Last active
January 15, 2016 18:37
-
-
Save barberj/a56f02eb72c40f6bdbe1 to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/sh | |
mkdir -p ~/.vim/autoload ~/.vim/bundle && \ | |
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim && \ | |
cd ~/.vim/bundle && \ | |
git clone [email protected]:scrooloose/nerdtree.git && \ | |
git clone [email protected]:scrooloose/syntastic.git && \ | |
git clone [email protected]:isRuslan/vim-es6.git && \ | |
git clone [email protected]:slim-template/vim-slim.git && \ | |
git clone [email protected]:wincent/command-t.git && \ | |
git clone [email protected]:tpope/vim-fugitive.git |
This file contains 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
#!/bin/sh | |
cd ~/.vim/bundle/vim-fugitive && git pull && \ | |
cd ~/.vim/bundle/syntastic && git pull && \ | |
cd ~/.vim/bundle/vim-slim && git pull && \ | |
cd ~/.vim/bundle/vim-es6 && git pull && \ | |
cd ~/.vim/bundle/command-t && git pull && \ | |
cd ~/.vim/bundle/nerdtree && git pull |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment