commit 91d4076dd0c7bb8bc171741d1775de8086bc67c1
parent 6ae2068a4831f56d4270afff5cb7082a2b1ad7ab
Author: Anders Damsgaard <andersd@riseup.net>
Date: Thu, 19 Oct 2017 11:56:11 -0400
disable ack.vim to see if fzf's functionality is sufficient
Diffstat:
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/links/.vim/plugins.vim b/links/.vim/plugins.vim
@@ -29,7 +29,7 @@ Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
Plug 'junegunn/fzf.vim'
Plug 'majutsushi/tagbar' " ctags overview :TagBarToggle
Plug 'ludovicchabant/vim-gutentags' " automatic tag generation
-Plug 'mileszs/ack.vim' " file search, using rg or ag (specified below)
+"Plug 'mileszs/ack.vim' " file search, using rg or ag (Note: use FZF's :Ag for now)
"""""" Syntax checking """"""
Plug 'w0rp/ale' " asynchronous syntax check
@@ -121,9 +121,9 @@ let g:vim_markdown_folding_disabled=1
let g:vim_markdown_math=1
" Tell ack.vim to use rg (ripgrep) or ag (the Silver Searcher) instead
-if executable("rg")
- let g:ackprg = 'rg --vimgrep --no-heading'
-elseif executable("ag")
- let g:ackprg = 'ag --vimgrep'
-end
+"if executable("rg")
+" let g:ackprg = 'rg --vimgrep --no-heading'
+"elseif executable("ag")
+" let g:ackprg = 'ag --vimgrep'
+"end