switch ripgrep for the silver searcher

This commit is contained in:
2019-05-30 18:18:43 -07:00
parent ae0c469d75
commit 64b5dbfaba

4
.vimrc
View File

@@ -104,8 +104,8 @@ nmap <C-P> :Files<CR>
nmap <C-p> :GFiles<CR>
" Ack
if executable('ag')
let g:ackprg = 'ag --vimgrep'
if executable('rg')
let g:ackprg = 'rg --vimgrep'
endif
nmap <Leader>a :Ack!<Space>