Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been using Vim and I would really like to save my settings. The problem I am having is that I cannot find my .vimrc file and it is not in the standard /home/user/.vimrc location. Does anyone have any ideas how I might find this file?

Thanks for the help.

share|improve this question
2  
If it isn't there, create it. – Jack Maney Jun 6 '12 at 20:11

2 Answers

up vote 10 down vote accepted

You need to create it. In most installations I've used it hasn't been created by default.

share|improve this answer
Okay thank you. – Eman Jun 6 '12 at 20:15

:scriptnames list all the .vim files that vim loaded for you including your vimrc.

:e $MYVIMRC open & edit the current .vimrc that you are using, then use Ctrl-g to view the path in status bar.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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