I have VsVim and when I load my solution file, I always need to :set ignorecase and :set smartcase each time. I'd like to save these settings, but I can't find where VsVim stores its settings or how to save its settings.
Asked
Active
Viewed 1.1k times
1 Answers
21
This has recently changed:
How can I verify my .vimrc is loading?
There are 2 non-standard vim settings that can be used to diagnose potential .vimrc load issues
- vimrc – This setting will display the full path of the file which was loaded for the .vimrc
- vimrcpaths – This setting will display the files and paths searched for .vimrc
By default VsVim will look for a file named .vsvimrc, _vsvimrc, .vimrc or _vimrc file in the paths HOME, VIM and USERPROFILE
As of now the commands supported in the .vimrc file are limited to those supported in command mode.

sehe
- 374,641
- 47
- 450
- 633
-
7Thank you sehe. For future reference, :set will show you your vimrcpaths. Creating a simple text file and filling it with all :set commands worked nicely. Keep in mind VsVim comes with some default :set commands which you need to include in your new .vimrc file. It won't 'add' so much as entirely replace your settings. – user2040277 Feb 25 '13 at 20:30