cd ~
git clone https://github.com/linpc/dotvim.git ~/.vim
ln -s ~/.vim/vimrc ~/.vimrc
cd ~/.vim
git submodule update --init
~/.vim/update.sh
cd ~/.vim
git submodule add <git-repository-url> bundle/<plugin-name>
- Remove the entry from
.gitmodules
git rm --cached bundle/<plugin-name>
rm -rf bundle/<plugin-name>
- [neocomplcache] (https://github.com/Shougo/neocomplcache): Ultimate auto-completion system for Vim.
- [checksyntax] (https://github.com/tomtom/checksyntax_vim): Check a file's syntax when saving a file (php, ruby, tex ...) with vim.
- [easytags.vim] (https://github.com/xolox/vim-easytags): Automated tag file generation and syntax highlighting of tags in Vim
- [gundo] (https://github.com/sjl/gundo.vim): Graph your Vim undo tree in style.
- drewneil: [Synchronizing plugins with git submodules and pathogen] (http://vimcasts.org/episodes/synchronizing-plugins-with-git-submodules-and-pathogen/)