I am now using pathogen and GitHub to manage my vim plugins.
They are not difficult to use, but you need a few git commands to set it up, which I found very annoying.
To init .vim folder in Linux (or vimfiles for Windows), type:
mkdir .vim
cd .vim
git init
wget https://raw.github.com/tpope/vim-pathogen/HEAD/autoload/pathogen.vim -P ~/.vim/autoload
git add .
git commit -m 'initial commit'
To install each vim plugin, type: (here I use neocomplcache-snippets-complete as an example)
git submodule add https://github.com/Shougo/neocomplcache-snippets-complete.git bundle/neocomplacahe-snippets-complete
git add .gitmodules bundle/neocomplcache-snippets-complete
git submodule init
Apr 25, 2012
HOWTO: use pathogen to manage vim plugins
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment