This is my vim configuration. My goal is for this to be cross platform, as per this question: http://stackoverflow.com/questions/11576646/can-i-version-a-path-in-git-whose-name-is-operating-system-dependent
This revision marks my change from pathogen to Vundle. Vundle allows me to configure my plugins in my vimrc file. So I only need vundle, which loads with the git submodule init/update command. Afterwards, Vundle will retrieve the necessary plugins.
- Replace the existing $HOME/.vim with
git clone https://github.com/kyleskrinak/vim-files-2.0 .vim- On Windows, with mingw, use "vimfiles" instead of .vim
- The only submodule tracked is Vundle.vim — which will load all plugins after installation, as per the vimrc
- Create a $HOME/.vimrc with the contents
runtime vimrc- On Windows, use "_vimrc" instead of ".vimrc"
cd .vim(orcd vimfileson Windows)git submodule initgit submodule update- Launch vim — with an xoria error
- Run the PluginInstall function to load all plugins