# HG changeset patch # User Meredith Howard # Date 1404345751 14400 # Node ID db3183c639f965020789d313071775dc1f924afb # Parent f3d684572a8fecb3f6ac9483bd312c33173e0313 Add neocomplcache diff --git a/.vimrc b/.vimrc --- 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 = ' 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 + " }}}