Fix grepprg setting

This commit is contained in:
Daniel Lynn 2021-08-05 10:51:54 -05:00
parent 8bb15dcaa3
commit 82e5cf4cf8
Signed by: daniel
GPG Key ID: 28496A140E180A9D

View File

@ -5,7 +5,7 @@ if executable('rg')
noremap <Leader><Tab> :Ack <C-r><C-w><CR>
" Use rg over grep
set grepprg='rg --color never'
set grepprg=rg\ --color\ never
" Use rg in CtrlP for listing files. Lightning fast and respects .gitignore
let g:ctrlp_user_command = 'rg --files %s'