update install.sh
Prithu Goswami prithugoswami524@gmail.com
Sat, 24 Mar 2018 19:37:39 +0530
1 files changed,
6 insertions(+),
2 deletions(-)
jump to
M
install.sh
→
install.sh
@@ -5,9 +5,13 @@ ########## Variables
dir=~/dotfiles # dotfiles directory olddir=~/dotfiles_old # old dotfiles backup directory -files=".bashrc .vimrc .vim" # list of files/folders to symlink in homedir +files=".zshrc .vimrc .vim" # list of files/folders to symlink in homedir ########## + + +# Updateing the submodules in the git repo +git submodule update # create dotfiles_old in homedir echo "Creating $olddir for backup of any existing dotfiles in ~"@@ -27,5 +31,5 @@ echo "Creating symlink to $file in home directory."
ln -s $dir/$file ~ done -source ~/.bashrc +source ~/.zshrc source ~/.vimrc