diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/polyglot.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugin/polyglot.vim b/plugin/polyglot.vim index c5074088..7143043e 100644 --- a/plugin/polyglot.vim +++ b/plugin/polyglot.vim @@ -62,6 +62,11 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'sensible') == - set tabpagemax=50 endif + " Reduce updatetime from 4000 to 300 to avoid issues with coc.nvim + if &updatetime == 4000 + set updatetime=300 + endif + " Always save upper case variables to viminfo file. if !empty(&viminfo) set viminfo^=! |