aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Brändli <matthias.braendli@u-blox.com>2016-09-29 10:09:08 +0200
committerMatthias Brändli <matthias.braendli@u-blox.com>2016-09-29 10:09:08 +0200
commit85125df120da59fd460970069c97f45eb8f7ba3f (patch)
tree737e2100566aead521fcbc612e561430a29550c0
parentf37d653a2c83853c59d91f65e255a5d3608eefff (diff)
downloadvimrc-85125df120da59fd460970069c97f45eb8f7ba3f.tar.gz
vimrc-85125df120da59fd460970069c97f45eb8f7ba3f.tar.bz2
vimrc-85125df120da59fd460970069c97f45eb8f7ba3f.zip
use ag for ack.vim
-rw-r--r--dotvimrc2
1 files changed, 2 insertions, 0 deletions
diff --git a/dotvimrc b/dotvimrc
index c49a1ef..98ab353 100644
--- a/dotvimrc
+++ b/dotvimrc
@@ -60,6 +60,8 @@ NeoBundle 'Shougo/vimproc'
NeoBundle 'elixir-lang/vim-elixir'
NeoBundle 'mileszs/ack.vim.git'
+let g:ackprg = "ag"
+let g:ack_default_options = " -S --noheading --nopager --nocolor --nogroup --column"
noremap <Leader>a :Ack --cpp --cc <cword><CR>
NeoBundle 'tpope/vim-fugitive'