|
|
@@ -1,24 +1,24 @@
|
|
|
#!/bin/sh
|
|
|
|
|
|
# Running this script creates the appropriate symlinks in home
|
|
|
-# Use from within dotFiles directory
|
|
|
+# Use from within dotfiles directory
|
|
|
# A lot of this extra knowledge courtesy of vimcasts.org!
|
|
|
|
|
|
# Vim
|
|
|
-ln -s dotFiles/vim/ ~/.vim
|
|
|
-ln -s dotFiles/vim/vimrc ~/.vimrc
|
|
|
+ln -s dotfiles/vim/ ~/.vim
|
|
|
+ln -s dotfiles/vim/vimrc ~/.vimrc
|
|
|
# Vim persistent undo directory
|
|
|
mkdir ~/.vimundo
|
|
|
|
|
|
# Zsh
|
|
|
-ln -s dotFiles/zsh/zshrc ~/.zshrc
|
|
|
-ln -s dotFiles/zsh/zshenv ~/.zshenv
|
|
|
+ln -s dotfiles/zsh/zshrc ~/.zshrc
|
|
|
+ln -s dotfiles/zsh/zshenv ~/.zshenv
|
|
|
|
|
|
# Pentadactyl
|
|
|
-ln -s dotFiles/pentadactyl/pentadactylrc ~/.pentadactylrc
|
|
|
+ln -s dotfiles/pentadactyl/pentadactylrc ~/.pentadactylrc
|
|
|
|
|
|
# Screen
|
|
|
-ln -s dotFiles/screen/screenrc ~/.screenrc
|
|
|
+ln -s dotfiles/screen/screenrc ~/.screenrc
|
|
|
|
|
|
# Make a known_hosts file if none, otherwise zsh throws an error for our .zshrc
|
|
|
echo "Checking for known_hosts in ~/.ssh/..."
|
|
|
@@ -45,7 +45,7 @@ fi
|
|
|
git submodule init
|
|
|
git submodule update
|
|
|
|
|
|
-# Add more vim plugins from this dotFiles directory, like so:
|
|
|
+# Add more vim plugins from this dotfiles directory, like so:
|
|
|
# git submodule add git://github.com/tpope/vim-pathogen.git vim/bundle/pathogen
|
|
|
#
|
|
|
# Apart from updating plugins individually, you can update all submodules in one shot
|