aboutsummaryrefslogtreecommitdiff
path: root/deploy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'deploy.sh')
-rwxr-xr-xdeploy.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/deploy.sh b/deploy.sh
index a2ba314..5ae9d85 100755
--- a/deploy.sh
+++ b/deploy.sh
@@ -6,7 +6,7 @@ rm -rf dotfiles-backup
mkdir -p dotfiles-backup
# deploy
-for f in vimrc gvimrc gitconfig gitignore zshrc zsh dircolors.conf slate tmux.conf hammerspoon
+for f in vimrc gvimrc gitconfig gitignore zshrc zsh dircolors.conf tmux.conf hammerspoon
do
if [ -e ~/.${f} ]; then
mv ~/.${f} dotfiles-backup/${f}
@@ -16,8 +16,12 @@ done
if [ ! -d ~/.vim/bundle/vundle ]; then
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
+ cd ~/.vim/bundle/vundle
+ git pull
+ cd -
fi
vim +BundleInstall +qall
+vim +BundleClean +qall
if [ ! -e ~/.zshrc-local ]; then
cp zshrc-local ~/.zshrc-local