Projects Specific Settings with Vim(writtenby.adriengiboire.com)
writtenby.adriengiboire.com
Projects Specific Settings with Vim
http://writtenby.adriengiboire.com/articles/2014-09-30-projects-specific-settings-with-vim/
1 comments
1 - You can do both. You can either place a `.vimrc` file in any of your projects and/or add specific settings in your global `.vimrc` file the way I show in my article.
2 - Vim will load 2 files for configuration. The global `.vimrc` and the one in the directory you are in, eg. often the root directory of your projet. The latter being prior.
2 - Vim will load 2 files for configuration. The global `.vimrc` and the one in the directory you are in, eg. often the root directory of your projet. The latter being prior.
I have a couple of questions though. 1- Do we have to place a .vimrc in each folder for projects we need specific settings for? In your example, it seems that the code is just part of the global .vimrc.
2- When you say that it will overwrite the global .vimrc, will the other project specific .vimrcs completely overwrite, or will it only take the new settings into account?
Thanks!