Search code examples
searchvimcase-insensitiveriderideavim

IdeaVIM (Rider Vim Plugin) - How to force case insensitive search as the default


I'm using Rider with IdeaVIM. How do I force my default search to be case-insensitive?

In VsVIM, all I had to do was add this to my .vimrc

set ignorecase
set smartcase

But that does not appear to be working for this plugin...


Solution

  • Both ignorecase and smartcase are supported by IdeaVim. You have to put them into ~/.ideavimrc instead of ~/.vimrc, as specified here.

    Note that you can also put source ~/.vimrc into ~/.ideavimrc to source them.