Mercurial > dotfiles.old
diff vimrc @ 102:a25bdb562e43
Fix zsh prompt
author | zegervdv <zegervdv@me.com> |
---|---|
date | Sun, 10 Aug 2014 11:37:27 +0200 |
parents | 368f742876cf |
children | e7c5a1fffc5e |
line wrap: on
line diff
--- a/vimrc Sun Aug 10 11:32:00 2014 +0200 +++ b/vimrc Sun Aug 10 11:37:27 2014 +0200 @@ -430,9 +430,11 @@ let g:unite_source_rec_max_cache_files=5000 let g:unite_prompt='ยป ' if executable('ag') - let g:unite_source_grep_command='ag' - let g:unite_source_grep_default_opts='--nocolor --line-numbers --nogroup -S -C4' - let g:unite_source_grep_recursive_opt='' + let g:unite_source_grep_command = 'ag' + let g:unite_source_grep_default_opts = + \ '-i --line-numbers --nocolor --nogroup --hidden --ignore ' . + \ '''.hg'' --ignore ''.svn'' --ignore ''.git'' --ignore ''.bzr''' + let g:unite_source_grep_recursive_opt = '' elseif executable('ack') let g:unite_source_grep_command='ack' let g:unite_source_grep_default_opts='--no-heading --no-color -C4' @@ -481,9 +483,8 @@ " Neo Complete {{{ let g:neocomplete#enable_at_startup = 1 let g:neocomplet#enable_smart_case = 1 -let g:jedi#auto_vim_configuration = 0 -let g:jedi#completions_enabled = 0 let g:marching_enable_neocomplete = 1 +let g:neocomplete#enable_fuzzy_completion = 1 inoremap <expr><s-CR> pumvisible() ? neocomplete#smart_close_popup()"\<CR>" : "\<CR>" inoremap <expr><C-g> neocomplete#undo_completion() @@ -579,6 +580,7 @@ " }}} " Jedi {{{ let g:jedi#auto_vim_configuration=0 +let g:jedi#completions_enabled = 0 " }}} " Load local vimrc