Excerpts from cyboman's message of Fri May 13 02:26:04 +0200 2011:
> i would like to move my .vimrc and .viminfo files in .vim directory.
.vimrc ? So you're using linux. Then you can use symlinks:
ln -s ~/your-svn-dir/.vimrc ~/.vimrc
The harder way is to force vim to ignore .vimrc
vimClean () {
vim -u NONE -U NONE -N "$@"
}
and then add -c or -cmd command line args to source your .vimrc.
However load phases can be skipped so things may stop working unless you
source plugin files manually etc (Something which vim-addon-manager
already implements for you when using :ActivateAddon after Vim has
started up)
If you don't know yet have a look at vim-addon-manager.
Its documentation line 112 illustrates how I recommend managing custom
VimL code:
https://github.com/MarcWeber/vim-addon-manager/blob/master/doc/vim-addon-manager.txt
Then you can get started by copy pasting the last lines of the
documentation (which will install VAM) and adding 'github:YourName' to
the list of plugins ..
Marc Weber
--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php