aboutsummaryrefslogtreecommitdiff
path: root/.vim/after/plugin/lsp.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim/after/plugin/lsp.vim')
-rw-r--r--.vim/after/plugin/lsp.vim5
1 files changed, 5 insertions, 0 deletions
diff --git a/.vim/after/plugin/lsp.vim b/.vim/after/plugin/lsp.vim
index c2293f1..702be8f 100644
--- a/.vim/after/plugin/lsp.vim
+++ b/.vim/after/plugin/lsp.vim
@@ -5,6 +5,7 @@ endif
let g:lsp_diagnostics_enabled = 0
let g:lsp_document_code_action_signs_enabled = 0
let g:lsp_use_native_client = 1
+let g:lsp_fold_enabled = 1
packadd vim-lsp
packadd vim-lsp-snippets
@@ -85,6 +86,10 @@ function! s:on_lsp_buffer_enabled() abort
nmap <buffer> <leader>rn <plug>(lsp-rename)
nmap <buffer> K <plug>(lsp-hover)
+ setlocal foldmethod=expr
+ \ foldexpr=lsp#ui#vim#folding#foldexpr()
+ \ foldtext=lsp#ui#vim#folding#foldtext()
+
let g:lsp_format_sync_timeout = 1000
autocmd! BufWritePre *.rs,*.go call execute('LspDocumentFormatSync')
endfunction