I'm trying to install spf13-vim (a bunch of plugins) on Windows for using gVim, and I'm having trouble since the plugins (vimfiles) separately from my $HOME. Because of this, I've installed the plugins to another directory (C:\Users\myuser) where all the vimfiles are located.
Since Vim looks in my $HOME (H:\, a network drive) for the _vimrc, I've tried to add a _vimrc file there containing the following:
set runtimepath+=C:\Users\myuser\.vim
Starting Vim and running :set runtimepath?
returns the following:
runtimepath=H:\vimfiles,<standard vim directories>,C:\Users\myuser\.vim
The runtimepath seems to be correct, but gVim doesn't start any plugins as it should according to the _vimrc located in C:\Users\myuser.
Obviously, _vimrc isn't loaded. I can't seem to find why though, since the runtimepath includes the directory. I might have misunderstood how Vim loads the information, but can't find the error.
How can I get gVim to load the correct _vimrc in C:\Users\myuser\ at start up?