2017-01-06 01:19:19 +00:00
|
|
|
" Install plugins
|
|
|
|
Plug 'Shougo/neocomplcache.vim'
|
|
|
|
|
|
|
|
" Set configuration
|
2015-06-18 16:27:57 +00:00
|
|
|
let g:neocomplcache_enable_at_startup = 1
|
2015-09-29 16:27:05 +00:00
|
|
|
let g:neocomplcache_enable_smart_case = 1
|
2015-06-18 16:27:57 +00:00
|
|
|
let g:neocomplcache_max_list = 10
|
|
|
|
"let g:neocomplcache_enable_camel_case_completion = 1
|
|
|
|
let g:neocomplcache_enable_fuzzy_completion = 1
|
|
|
|
let g:neocomplcache_auto_completion_start_length = 2
|
|
|
|
let g:neocomplcache_manual_completion_start_length = 0
|
|
|
|
|
|
|
|
" omni_patterns
|
|
|
|
if !exists('g:neocomplcache_omni_patterns')
|
|
|
|
let g:neocomplcache_omni_patterns = {}
|
|
|
|
endif
|
|
|
|
|
|
|
|
" omni_functions
|
|
|
|
if !exists('g:neocomplcache_omni_functions')
|
|
|
|
let g:neocomplcache_omni_functions = {}
|
|
|
|
endif
|
|
|
|
|
|
|
|
" force_omni_patterns
|
|
|
|
if !exists('g:neocomplcache_force_omni_patterns')
|
|
|
|
let g:neocomplcache_force_omni_patterns = {}
|
|
|
|
endif
|
2015-08-13 22:27:58 +00:00
|
|
|
let g:neocomplcache_force_omni_patterns['c'] = '[^.[:digit:] *\t]\%(\.\|->\)'
|
|
|
|
let g:neocomplcache_force_omni_patterns['go'] = '[^.[:digit:] *\t]\%(\.\|->\)'
|
2015-06-18 16:27:57 +00:00
|
|
|
let g:neocomplcache_force_omni_patterns['python'] =
|
|
|
|
\ '\%([^. \t]\.\|^\s*@\|^\s*from\s.\+import \|^\s*from \|^\s*import \)\w*'
|
|
|
|
|
|
|
|
" keyword_patterns
|
|
|
|
if !exists('g:neocomplcache_keyword_patterns')
|
|
|
|
let g:neocomplcache_keyword_patterns = {}
|
|
|
|
endif
|
|
|
|
let g:neocomplcache_keyword_patterns['default'] = '[0-9a-zA-Z:#_]\+'
|