Skip to content

Instantly share code, notes, and snippets.

@barberj
Last active January 15, 2016 18:37
Show Gist options
  • Save barberj/a56f02eb72c40f6bdbe1 to your computer and use it in GitHub Desktop.
Save barberj/a56f02eb72c40f6bdbe1 to your computer and use it in GitHub Desktop.
#!/bin/sh
mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim && \
cd ~/.vim/bundle && \
git clone git@github.com:scrooloose/nerdtree.git && \
git clone git@github.com:scrooloose/syntastic.git && \
git clone git@github.com:isRuslan/vim-es6.git && \
git clone git@github.com:slim-template/vim-slim.git && \
git clone git@github.com:wincent/command-t.git && \
git clone git@github.com:tpope/vim-fugitive.git
#!/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