Reputation: 8903
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...
Upvotes: 1
Views: 595
Reputation: 16838
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.
Upvotes: 3