Last active
August 29, 2015 14:08
-
-
Save pbarker/5eb164a1b855062bd63c to your computer and use it in GitHub Desktop.
Vim Shelly
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
#!/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