Bump TF version and language server, coc.nvim fixes

This commit is contained in:
Andrejus
2020-10-26 17:01:20 +00:00
parent 6ea4142783
commit ae81a6be21
6 changed files with 40 additions and 11 deletions

View File

@@ -41,8 +41,22 @@ set nowrap
" two lines for command line
set cmdheight=2
" Having longer updatetime (default is 4000 ms = 4 s) leads to noticeable
" delays and poor user experience.
set updatetime=300
" Don't pass messages to |ins-completion-menu|.
set shortmess+=c
" Always show the signcolumn, otherwise it would shift the text each time
" diagnostics appear/become resolved.
if has("patch-8.1.1564")
" Recently vim can merge signcolumn and number column into one
set signcolumn=number
else
set signcolumn=yes
endif
" ============================================================================ "
" === UI === "
" ============================================================================ "