diff options
| -rw-r--r-- | .config/nvim/lua/init/01-options.lua | 1 | ||||
| -rw-r--r-- | .config/vim/vimrc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.config/nvim/lua/init/01-options.lua b/.config/nvim/lua/init/01-options.lua index 4072d97..f706ece 100644 --- a/.config/nvim/lua/init/01-options.lua +++ b/.config/nvim/lua/init/01-options.lua @@ -149,6 +149,7 @@ O.wildignorecase = true O.shell = 'fish' O.keywordprg = '' +O.grepprg = 'rg --vimgrep --smart-case' -- Encoding {{{1 diff --git a/.config/vim/vimrc b/.config/vim/vimrc index 7896545..f9edfba 100644 --- a/.config/vim/vimrc +++ b/.config/vim/vimrc @@ -135,6 +135,7 @@ set wildmenu set shell=fish set keywordprg= +let &grepprg = 'rg --vimgrep --smart-case' set fileencodings=utf-8,cp932,euc-jp |
