Created
October 29, 2010 15:45
-
-
Save mdaisuke/653785 to your computer and use it in GitHub Desktop.
setting up vim plugins
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
mkdir ~/.vim | |
cd ~/.vim/ | |
git clone http://github.com/tpope/vim-pathogen.git | |
# need following in .vimrc | |
# call pathogen#runtime_append_all_bundles() | |
mv ./vim-pathogen/* ./ | |
rm -rf ./vim-pathogen/ | |
mkdir ~/.vim/bundle | |
cd ~/.vim/bundle | |
git clone http://github.com/Shougo/vimproc.git | |
git clone http://github.com/Shougo/vimshell.git | |
git clone http://github.com/Shougo/unite.vim.git | |
git clone http://github.com/Shougo/neocomplcache.git | |
git clone http://github.com/thinca/vim-quickrun.git | |
git clone http://github.com/scrooloose/nerdtree.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment