From cd39c1d7222ffb74ff4596b429cc1573e774064d Mon Sep 17 00:00:00 2001 From: Stefan Huber Date: Fri, 29 Jan 2021 23:45:38 +0100 Subject: [PATCH] init: New deoplete setting mechanism --- init.vim | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/init.vim b/init.vim index eae73f7..eb6662d 100644 --- a/init.vim +++ b/init.vim @@ -120,7 +120,10 @@ let g:clang_compilation_database = '.' let g:python3_host_prog = '/usr/bin/python3' " deoplete requires huge startuptime. Delay loading upon first InsertEnter. let g:deoplete#enable_at_startup = 0 -let g:deoplete#enable_smart_case = 1 +call deoplete#custom#option({ + \ 'smart_case' : v:true, + \ 'auto_refresh_delay' : 100, + \ }) au InsertEnter * call deoplete#enable() "augroup pencil -- 2.30.2