all repos — dotfiles @ a8f8d38fad817289a7803da843b69377fb0c8ccc

linux dotfiles

update install.sh
Prithu Goswami prithugoswami524@gmail.com
Sat, 24 Mar 2018 19:37:39 +0530
commit

a8f8d38fad817289a7803da843b69377fb0c8ccc

parent

b61575895fe064b37904ecb16d2223c8dec1365f

1 files changed, 6 insertions(+), 2 deletions(-)

jump to
M install.shinstall.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