Put `.vimrc` into the `.vim` folder

vimvimrc

Is it possible to put the .vimrc into the .vim folder so that I only have to sync the whole folder and not folder and file to other computers?

Best Answer

Starting in Vim 7.4 you can also just place a file vimrc into $HOME/.vim/vimrc or $HOME/vimfiles/vimrc for Windows and Vim will find it automatically.

Note, this is vimrc without a . (dot) or _ (underscore) like the traditional .vimrc/_vimrc file would have.

Related Question