Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VsVim settings save file

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.

like image 615
user2040277 Avatar asked Feb 22 '13 21:02

user2040277


1 Answers

This has recently changed:

  • https://github.com/jaredpar/VsVim/wiki/faq

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.

like image 116
sehe Avatar answered Nov 06 '22 23:11

sehe