Skip to content

Commit

Permalink
Replace the ag.vim with ack.vim
Browse files Browse the repository at this point in the history
The ag.vim has EOL, so I start use the ack.vim .

* rking/ag.vim#124 (comment)
  • Loading branch information
chusiang committed Mar 17, 2018
1 parent cea9404 commit 5a220a4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion _vim/plugin-list.vim
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,16 @@ NeoBundle 'vim-scripts/bats.vim'
NeoBundle 'xu-cheng/brew.vim'
"NeoBundle 'vadv/vim-chef'
"autocmd FileType ruby,eruby set filetype=ruby.eruby.chef
NeoBundle 'rking/ag.vim'

NeoBundle 'mileszs/ack.vim'
cnoreabbrev ag Ack
cnoreabbrev aG Ack
cnoreabbrev Ag Ack
cnoreabbrev AG Ack
if executable('ag')
let g:ackprg = 'ag --vimgrep --smart-case'
endif

NeoBundle 'ekalinin/Dockerfile.vim'
NeoBundle 'pearofducks/ansible-vim'
NeoBundle 'Glench/Vim-Jinja2-Syntax'
Expand Down

0 comments on commit 5a220a4

Please sign in to comment.