Created
August 9, 2017 15:27
-
-
Save robvolk/89cce6079d4108e216d25426f39f5fca to your computer and use it in GitHub Desktop.
Upgrade / Update Vim & all plugins
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function upgrade-vim { | |
brew update | |
brew upgrade vim | |
cd ~/.vim/bundle | |
for i in `ls`; do | |
cd "$i" | |
git pull | |
cd .. | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Stole the script to update the plugins from from https://coderwall.com/p/rffwva/update-your-vim-pathogen-plugins