summaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index acc6395..20afd9e 100755
--- a/install.sh
+++ b/install.sh
@@ -2,7 +2,7 @@
dir=~/dotfiles # dotfiles directory
olddir=~/dotfiles_old # old dotfiles backup directory
-files="bashrc vimrc vim zshrc oh-my-zsh" # list of files/folders to symlink in homedir
+files="bashrc vimrc vim zshrc xmodmap" # list of files/folders to symlink in homedir
mkdir -p $olddir
cd $dir
@@ -11,3 +11,9 @@ for file in $files; do
mv ~/.$file ~/dotfiles_old/
ln -s $dir/.$file ~
done
+
+rm -rf .vim/bundle
+mkdir .vim/bundle
+git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
+vim +PluginInstall +qall
+