The bundle subdirectory of my .vim folder. It contains the pathogen modules I use as git submodules.
Set up as follows:
-
Clone the primary repository and set it up as your .vim folder
cd git clone https://github.com/praveenv253/dotvim.git .vim -
Create a symbolic link for .vimrc
ln -s .vim/vimrc .vimrc -
Copy the file for powerline fonts
mkdir -p .fonts cd .fonts ln -s ~/.vim/DejaVuSansMono-Powerline.ttf -
Clone the bundle repository
cd ~/.vim git clone https://github.com/praveenv253/vim-bundle bundle -
Set up the bundle submodules
cd ~/.vim/bundle git submodule init git submodule update
That's it!
- taglist is not a submodule, because the one at vim scripts is way ahead of its git mirror at the time of this writing.
- vim-powerline is going to be replaced by powerline. So this needs to be changed in the near future. Further, patched fonts need to be installed to fully make use of vim-powerline, as described above.