Follow these steps to install vim plugins and config files:
git clone git://github.com/nhbusch/dotvim.git ~/.vim
Note: On Windows, replace ~ with %HOME% or %USERPROFILE%.
On Unix:
ln -s ~/.vim/vimrc ~/.vimrc
ln -s ~/.vim/gvimrc ~/.gvimrcOn Windows, assuming Vim is installed to C:\opt\vim
mklink /H C:\opt\vim\_vimrc %USERPROFILE%\.vim\vimrc
mklink /H C:\opt\vim\_gvimrc %USERPROFILE%\.vim\gvimrc
Note: if the personal runtime directory is assumed to be vimfiles,
also create a symbolic link vimfiles pointing to %USERPROFILE%\.vim:
mklink /J %USERPROFILE%\vimfiles %USERPROFILE%\.vim
Switch to the ~/.vim directory, and fetch submodules:
cd ~/.vim
git submodule init
git submodule update