Skip to content

Commit

Permalink
Replace vim ag plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
overthink committed Jan 23, 2018
1 parent d5e3525 commit 93897d6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion home/.vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Plugin 'tomasr/molokai'
Plugin 'krisajenkins/vim-pipe'
Plugin 'rust-lang/rust.vim'
Plugin 'exu/pgsql.vim'
Plugin 'rking/ag.vim'
Plugin 'mileszs/ack.vim'
Plugin 'kien/ctrlp.vim'
Plugin 'overthink/nginx-vim-syntax'
Plugin 'vim-syntastic/syntastic'
Expand Down Expand Up @@ -336,3 +336,8 @@ inoremap <expr> <C-Space> pumvisible() \|\| &omnifunc == '' ?
\ "\" \\<lt>bs>\\<lt>C-n>\"\<CR>"
imap <C-@> <C-Space>
" Use the ack.vim plugin for ag (since ag.vim is deprecated)
let g:ackprg = 'ag --vimgrep --smart-case'
cnoreabbrev ag Ack
cnoreabbrev Ag Ack

0 comments on commit 93897d6

Please sign in to comment.