Skip to content

Commit

Permalink
Replace rking/ag.vim with mileszs/ack.vim.
Browse files Browse the repository at this point in the history
* ag.vim has been deprecated.
* rking/ag.vim#124 (comment)
  • Loading branch information
joshukraine committed Mar 27, 2018
1 parent b36848c commit 5a101f9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ Plug 'nelstrom/vim-textobj-rubyblock' " A custom text object for selecting rub
Plug 'ctrlpvim/ctrlp.vim' " Active fork of kien/ctrlp.vim—Fuzzy file finder | https://github.com/ctrlpvim/ctrlp.vim
Plug 'scrooloose/nerdtree' " A tree explorer plugin for vim | https://github.com/scrooloose/nerdtree
Plug 'skwp/greplace.vim' " Global search and replace for vi | https://github.com/skwp/greplace.vim
Plug 'rking/ag.vim' " Vim plugin for the_silver_searcher | https://github.com/rking/ag.vim
Plug 'mileszs/ack.vim' " Vim plugin for the Perl module / CLI script 'ack' | https://github.com/mileszs/ack.vim
Plug 'christoomey/vim-tmux-navigator' " Seamless navigation between tmux panes and vim splits | https://github.com/christoomey/vim-tmux-navigator
Plug 'joshukraine/dragvisuals' " Damian Conway's dragvisuals plugin for vim | https://github.com/joshukraine/dragvisuals
Plug 'easymotion/vim-easymotion' " Vim motions on speed! | https://github.com/easymotion/vim-easymotion
Expand Down Expand Up @@ -312,6 +312,11 @@ call plug#end()

" Plugin-specifc Mappings & Settings

" ack.vim
if executable('ag')
let g:ackprg = 'ag --vimgrep'
endif

" NERDTree
nmap <silent> <F3> :NERDTreeToggle<CR>
map <leader>\ :NERDTreeToggle<CR>
Expand Down

0 comments on commit 5a101f9

Please sign in to comment.