up vote 6 down vote favorite
1
share [g+] share [fb]

I have some configuration in my vimrc. Some generic ones, and some other really specific.

I would like to share this config with some co workers, but a lot of them don't need these specific ones.

Instead of editing a bunch of different vimrc, I would like to know if it's possible to have an "include" directive - something like a file named ".vimrc_module" and called from vimrc. Is it possible?

link|improve this question

feedback

2 Answers

up vote 11 down vote accepted

Yes, it is possible, use the :source command:

source .vimrc_module

See:

:help :source

for more information.

link|improve this answer
feedback

Plugins serve this purpose.

  • plain plugins are always loaded once,
  • autoload plugins are loaded on demand (they are ideal to define libraries of viml functions),
  • ftplugin are loaded once per buffer (when the ftplugin type matches the buffer type),
  • local vimrcs are loaded on a project-basis (non standard),
  • and so on.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.