blob: 1aaadc9dac95f36f3ff4253ad15b9c2bf214c2a0 (
plain)
1
2
3
4
5
6
7
8
9
10
|
UsePlugin 'ack.vim'
" ack.vim
" let g:ackprg = 'rg --vimgrep --no-heading --hidden --no-ignore-vcs'
if executable('rg')
let g:ackprg = 'rg --vimgrep --no-heading --hidden -g "!{.git,node_modules}/*" '
elseif executable('git')
let g:ackprg = 'git grep -I --line-number '
endif
|