My .vim
directory; configuration for the Vim text editor.
git clone [email protected]:roryokane/dotvim.git ~/.vim
git clone [email protected]:roryokane/dotvim.git %USERPROFILE%\.vim
ln -s ~/.vim/vimrc ~/.vimrc
ln -s ~/.vim/gvimrc ~/.gvimrc
cd %USERPROFILE%
mklink _vimrc .vim\vimrc
mklink _gvimrc .vim\gvimrc
(For some reason, the Vundle-managed plugins don’t all have entries in Git’s .gitmodules
file, meaning I can’t just tell Git to download all submodules. Here’s what worked for me instead.)
Install the Vundle plugin manager
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
git clone https://github.com/gmarik/vundle.git %USERPROFILE%\.vim\bundle\vundle
vim +BundleInstall +qall
When you launch vim
again, Vim should now be all set up, and you should get no errors.