Skip to content

Instantly share code, notes, and snippets.

@robvolk
Created August 9, 2017 15:27
Show Gist options
  • Save robvolk/89cce6079d4108e216d25426f39f5fca to your computer and use it in GitHub Desktop.
Save robvolk/89cce6079d4108e216d25426f39f5fca to your computer and use it in GitHub Desktop.
Upgrade / Update Vim & all plugins
function upgrade-vim {
brew update
brew upgrade vim
cd ~/.vim/bundle
for i in `ls`; do
cd "$i"
git pull
cd ..
done
}
@robvolk
Copy link
Author

robvolk commented Aug 9, 2017

Stole the script to update the plugins from from https://coderwall.com/p/rffwva/update-your-vim-pathogen-plugins

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment