Skip to content

Commit

Permalink
Switch ag.vim for ack.vim
Browse files Browse the repository at this point in the history
ag.vim was deprecated:
rking/ag.vim#124 (comment)
  • Loading branch information
ondrowan committed Apr 14, 2017
1 parent c6ab24a commit a411cc1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Plugin 'terryma/vim-expand-region'
Plugin 'elzr/vim-json'
Plugin 'godlygeek/tabular'
Plugin 'BufOnly.vim'
Plugin 'rking/ag.vim'
Plugin 'mileszs/ack.vim'
Plugin 'terryma/vim-multiple-cursors'
Plugin 'kshenoy/vim-signature'
Plugin 'Shougo/vimproc.vim' " Dependency of Quramy/tsuquyomi
Expand Down Expand Up @@ -184,6 +184,9 @@ let g:ctrlp_user_command = 'ag %s -l --hidden --nocolor --ignore .git -g ""'

set runtimepath^=~/.dotfiles/bundle/ctrlp

" ack.vim
let g:ackprg = 'ag --vimgrep --smart-case'

" vim-go
let go_highlight_space_tab_error = 0
let go_highlight_trailing_whitespace_error = 0
Expand Down

0 comments on commit a411cc1

Please sign in to comment.