diff --git a/neovim/init.vim b/neovim/init.vim index 898895d..e811c64 100644 --- a/neovim/init.vim +++ b/neovim/init.vim @@ -103,11 +103,11 @@ map ;x :x set wildignore+=*.swp,*~ call denite#custom#var('file_rec', 'command', -\ ['rg', '--files'], +\ ['rg', '--files', '--hidden'], \) call denite#custom#var('grep', 'command', ['rg']) call denite#custom#var('grep', 'default_opts', -\ ['--vimgrep', '--no-heading', '--smart-case']) +\ ['--vimgrep', '--no-heading', '--smart-case', '--hidden']) call denite#custom#var('grep', 'recursive_opts', []) call denite#custom#var('grep', 'pattern_opt', ['--regexp']) call denite#custom#var('grep', 'separator', ['--'])