1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 20:35:11 +01:00

Search with ag

This commit is contained in:
2018-01-05 12:10:20 +01:00
parent cdee89effe
commit 69192a865a

5
.vimrc
View File

@@ -85,6 +85,11 @@ autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTreeType") && b:NERDTree
"let g:ctrlp_dotfiles = 0
"let g:ctrlp_switch_buffer = 0
" Run your favorite search tool from Vim, with an enhanced results list.
" Supports Silver Searcher `ag`
Plugin 'mileszs/ack.vim'
" apt install silversearcher-ag
let g:ackprg = 'ag --nogroup --nocolor --column'
" fzf integration for fast fuzzy finding, better and faster than ctrl-p
set rtp+=~/workspace/projects/others/fzf