vimrc: try to reduce deoplete flicker
This commit is contained in:
parent
c16e96435c
commit
85aef3277a
9
vimrc
9
vimrc
|
@ -143,11 +143,12 @@ packadd! deoplete.nvim
|
||||||
" Disable completion messages:
|
" Disable completion messages:
|
||||||
set shortmess+=c
|
set shortmess+=c
|
||||||
let g:deoplete#enable_at_startup = 1
|
let g:deoplete#enable_at_startup = 1
|
||||||
call deoplete#custom#option('num_processes', 6)
|
call deoplete#custom#option('num_processes', 1)
|
||||||
call deoplete#custom#option('max_list', 250)
|
call deoplete#custom#option('max_list', 30)
|
||||||
call deoplete#custom#option('auto_complete_delay', 0)
|
call deoplete#custom#option('auto_complete_delay', 25)
|
||||||
call deoplete#custom#option('auto_refresh_delay', 250)
|
call deoplete#custom#option('auto_refresh_delay', 250)
|
||||||
call deoplete#custom#option('refresh_always', v:false)
|
call deoplete#custom#option('refresh_always', v:false)
|
||||||
|
call deoplete#custom#option('prev_completion_mode', 'length')
|
||||||
call deoplete#custom#option('omni_patterns', {
|
call deoplete#custom#option('omni_patterns', {
|
||||||
\ 'go': '[^. *\t]\.\w*',
|
\ 'go': '[^. *\t]\.\w*',
|
||||||
\})
|
\})
|
||||||
|
@ -336,7 +337,7 @@ augroup END
|
||||||
runtime macros/matchit.vim
|
runtime macros/matchit.vim
|
||||||
|
|
||||||
" load other plugins:
|
" load other plugins:
|
||||||
packadd! tmux-complete.vim
|
" packadd! tmux-complete.vim
|
||||||
packadd! vim-commentary
|
packadd! vim-commentary
|
||||||
" Requires both fzf.vim plugin to be manually installed:
|
" Requires both fzf.vim plugin to be manually installed:
|
||||||
" https://github.com/junegunn/fzf/blob/master/plugin/fzf.vim
|
" https://github.com/junegunn/fzf/blob/master/plugin/fzf.vim
|
||||||
|
|
Loading…
Reference in New Issue