Skip to content

Instantly share code, notes, and snippets.

@pbarker
Last active August 29, 2015 14:08
Show Gist options
  • Save pbarker/5eb164a1b855062bd63c to your computer and use it in GitHub Desktop.
Save pbarker/5eb164a1b855062bd63c to your computer and use it in GitHub Desktop.
Vim Shelly
#!/usr/bin/env bash
#shelly for basic vim config
#install pathogen
mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
#install plugins
git clone https://github.com/kien/ctrlp.vim.git ~/.vim/bundle
git clone https://github.com/scrooloose/nerdtree.git ~/.vim/bundle
git clone https://github.com/scrooloose/syntastic.git ~/.vim/bundle
git clone https://github.com/bling/vim-airline ~/.vim/bundle/vim-airline
#Get the theme
git clone https://gist.github.com/188c85a5937d48b57697.git ~/.vim/colors
#Set up vim.rc
git clone https://gist.github.com/04e61e015ae200cf8de2.git ~/.vimrc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment