Wed, 02 Jul 2014 20:02:31 -0400
Add neocomplcache
.vimrc | file | annotate | diff | comparison | revisions |
--- a/.vimrc +++ b/.vimrc @@ -59,6 +59,7 @@ end Plugin 'Shougo/unite.vim' Plugin 'Shougo/vimshell.vim' Plugin 'Shougo/vimfiler.vim' + Plugin 'Shougo/neocomplcache.vim' Plugin 'sjl/gundo.vim' Plugin 'majutsushi/tagbar' Plugin 'godlygeek/tabular' @@ -317,6 +318,15 @@ let g:signify_mapping_next_hunk = '<lead let g:signify_mapping_prev_hunk = '<leader>gk' let g:signify_mapping_toggle = '<leader>gt' +" > neocomplcache +" Disable AutoComplPop. +let g:acp_enableAtStartup = 0 + +" Use neocomplcache. +let g:neocomplcache_enable_at_startup = 1 +let g:neocomplcache_enable_smart_case = 1 +let g:neocomplcache_min_syntax_length = 3 + " }}}