Update install.sh
Prithu Goswami prithugoswami524@gmail.com
Sun, 01 Apr 2018 12:28:41 +0530
1 files changed,
6 insertions(+),
3 deletions(-)
jump to
M
install.sh
→
install.sh
@@ -5,7 +5,7 @@ ########## Variables
dir=~/dotfiles # dotfiles directory olddir=~/dotfiles_old # old dotfiles backup directory -files=".zshrc .vimrc .vim" # list of files/folders to symlink in homedir +files=".zshrc .vimrc .vim .oh-my-zsh" # list of files/folders to symlink in homedir ##########@@ -14,8 +14,6 @@ # Updateing the submodules in the git repo
git submodule init git submodule update -# copying the oh-my-zsh repo to the home dir -cp -r ./oh-my-zsh ~/.oh-my-zsh # create dotfiles_old in homedir echo "Creating $olddir for backup of any existing dotfiles in ~"@@ -34,3 +32,8 @@ mv ~/$file ~/dotfiles_old/
echo "Creating symlink to $file in home directory." ln -s $dir/$file ~ done + +# fetching AutoJump and installing it +git clone https://github.com/wting/autojump.git +cd autojump +./install.py