mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
10 lines
244 B
VimL
10 lines
244 B
VimL
|
"disable completion (default: 0)
|
||
|
if !exists("g:disablecompletion")
|
||
|
let g:disablecompletion = 0
|
||
|
endif
|
||
|
|
||
|
if !g:disablecompletion && g:python_neovim
|
||
|
let g:deoplete#enable_at_startup = 1
|
||
|
let deoplete#tag#cache_limit_size = 5000000
|
||
|
endif
|