We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 423e113 commit a901e92Copy full SHA for a901e92
config/pluginconfig.vim
@@ -11,3 +11,19 @@ let g:NERDTreeDirArrows = 1 " Enable directory arrows
11
12
" use special powerline font
13
let g:Powerline_symbols = 'fancy'
14
+
15
+" unite searching stuff
16
+if executable('ag')
17
+ " Use ag in unite grep source.
18
+ let g:unite_source_grep_command = 'ag'
19
+ let g:unite_source_grep_default_opts = '--nocolor --nogroup --hidden'
20
+ let g:unite_source_grep_recursive_opt = ''
21
+elseif executable('ack-grep')
22
+ " Use ack in unite grep source.
23
+ let g:unite_source_grep_command = 'ack-grep'
24
+ let g:unite_source_grep_default_opts =
25
+ \ '--no-heading --no-color -a -H'
26
27
+endif
28
29
+runtime macros/matchit.vim
0 commit comments