I wish to store my Mac, Windows and Linux vim configuration files in git. On *nix systems, your vim configuration files go in ${HOME}/.vim but for the Windows binary, the same directory is named "vimfiles" Can I configure git to accommodate the different directory name?
|
My setup is very simple. On Mac, the versioned directory is:
On Linux, it is:
On Windows XP (yes), it is:
They all point to the same GitHub repository. My settings are stored in a The actual default user-specific
is a real file, no need for a symlink. It contains only one line:
that tells vim to read, and execute, my Because of how Setting up a new machine or user is as simple as cloning my repo and typing two easy to remember words. |
|||||||
|
|
You don't need to configure Git, just tell Vim to use
|
|||||||||||
|
|
I also need to share config files for vim and other applications between multiple systems, and I found that git was not only overkill but also required manual syncing on each system to get the latest updates and to publish changes. A better solution for me is to put these config files into Dropbox, make all of my systems connect to my Dropbox account, and create symbolic links to these shared files. For example, I put my vimrc file under
You should be able to use Windows' Dropbox keeps a history of changes over the last 30 days, which is enough to handle recovering from most problems for which I needed git. The cool thing is that you can add that new macro or setting to your Of course this approach is also handy for your other config files, too ( |
|||
|

$HOMEunder version control? I have a~/.vim/vimrcandruntime vimrcin my~/.vimrc. – romainl Jul 20 '12 at 14:43