Skip to content

Commit

Permalink
Add ack.vim key binding / fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
jelly committed Feb 8, 2017
1 parent 5e26c95 commit ce21994
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .vimrc
Expand Up @@ -158,5 +158,13 @@ nmap <silent> <C-j> <Plug>(ale_next_wrap)
nnoremap <space>ln :lnext<CR>
nnoremap <space>lp :lprev<CR>
" ack.vim, fuzzy find
nnoremap <Leader>ff :Ack!<Space>
" Use pacman -S the_silver_searcher if avaliable.
if executable('ag')
let g:ackprg = 'ag --vimgrep'
endif

" Tags
set tags=./tags,tags;$HOME

0 comments on commit ce21994

Please sign in to comment.