adivasile
adivasile

Reputation: 2487

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_config

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.

Upvotes: 1

Views: 677

Answers (1)

tinifni
tinifni

Reputation: 2392

Maybe this is not the solution you desire, but you could create a symbolic link instead.

ln -s ~/vim_config ~/.vim

Upvotes: 1

Related Questions