I want to keep my Vim and Emacs configurations under version control, but I don't want my entire home folder there (or rather, I do, but there should be 3 separate repositories). With Emacs it's easy; if ~/.emacs doesn't exist, then ~/.emacs.d/init.el is used as the init file. So I can have a separate Git repo in ~/.emacs.d/. With Vim, it seems .vimrc can only exist in home folder and not in ~/vimfiles (the equivalent to ~/.emacs.d). Is this the best way to put .vimrc under version control?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Perhaps moving your .vimrc to ~/.vim/ and symlinking to home will do?

Other, much more modular approach is to move your startup script to ~/.vim/plugins/, perhaps create a subdirectory there, and single or multiple init scripts: Vim will do a :runtime! plugin/**/*.vim when starting.

link|improve this answer
Your second suggestion is precisely what I was asking about. – Alexey Romanov Oct 10 '10 at 9:53
As it happened, I was forced to use the runtime vimrc approach after all, to ensure that my startup script is loaded first and loads Pathogen before Vim gets the chance to do :runtime! plugin/**/*.vim. – Alexey Romanov Oct 10 '10 at 19:23
Oh, these kinds of special conditions may indeed invalidate otherwise such a nice technique. Have you read :help starting.txt for additional tips? The files are sourced in alphabetical order, so renaming your startup script to 00_startup.vim could work? – progo Oct 11 '10 at 9:15
feedback

Adds a step to the process, but I just have a bash script deploy.sh in my vim settings.

#!/bin/bash

if [ -f ~/.vimrc ] && [ ! -L ~/.vimrc ]
then
    echo "Backing up existing ~/.vimrc to ~/.vimrc.bak"
    mv ~/.vimrc ~/.vimrc.bak
fi
if [ -L ~/.vimrc ]
then
    echo "Already have ~/.vimrc symlink, we're good"
else
    echo "Creating symlink ~/.vimrc, which points to ~/.vim/vimrc"
    ln -s ~/.vim/vimrc ~/.vimrc
fi

git submodule init
git submodule update
link|improve this answer
feedback

You could just keep a backup in version control and deploy it (i.e. move it) to your home directory when you need it. You could write an easy script to manage all this handling so at least transparently it won't seem like a lot of annoying work to move it back and forth.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.