Vim won't load plugins when I change the runtimepath
Basically I want to move everything from ~/.vim into a separate folder, let's say ~/vim_config.
I added this setup my ~/.gvimrc
set runtimepath^=~/vim_开发者_如何学JAVAconfig
If I do a :set rtp the ~/vim_config folder is at the top of the list.
But no plugins are loaded. Colorschemes are loaded though.
Maybe this is not the solution you desire, but you could create a symbolic link instead.
ln -s ~/vim_config ~/.vim
精彩评论