I use spf13 as my vim plugin collection.
This is the .vimrc file.
How can I override only ‘general’ group bundles?
Or, to be more specific, How can I disable or replace just one plugin?
Thanks!
updated: sorry , maybe i didn’t make myself clear, what i really want is to disable or replace a plugin in .vimrc.local or .vimrc.bundles.local
i don’t want to touch .vimrc file.
updated2: Thanks all . i’ve figured it out .
“let NERDTreeChDirMode=0 and set noautochdir” should works .
But i also need to comment this out (autocmd BufEnter * if bufname(“”) !~ “^[A-Za-z0-9]*://” | lcd %:p:h | endif) .
This is documented in the .vimrc for spf13.
Remove
generalfrom the list, or, e.g.php,ruby, if you’re not doing php or ruby development.For specific plugins, grep for the plugin in the .vimrc, and comment out the line that loads the Bundle, e.g.: