You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
config/nvim/conf.d/ack.vim

15 lines
241 B

" use ag
if executable('ag')
let g:ackprg = 'ag --vimgrep'
endif
" auto-close results window
let g:ack_autoclose = 1
" use background search
"let g:ack_use_dispatch = 1
" C-* to search word under cursor
noremap <C-s>* :Ack <cword><cr>