vimrc: configure more lsp knobs

This commit is contained in:
t14 2024-07-07 11:39:53 +02:00
parent 903b40e104
commit 628a703415
Signed by: wanderer
SSH Key Fingerprint: SHA256:szgNfbjbimyesAS1xfRZ0DY3hcNv9xC9ocRCJjD4Wgg

@ -246,6 +246,13 @@ let g:airline#extensions#cursormode#enabled = 0
" lsp
let g:lsp_document_code_action_signs_enabled = 1
let g:lsp_document_code_action_signs_delay = 200
let g:lsp_document_highlight_enabled = 1
let g:lsp_document_highlight_delay = 200
let g:lsp_use_native_client = 1
let g:lsp_format_sync_timeout = 1000 " in milliseconds
let g:lsp_max_buffer_size = 10000000
" disable diagnostics support - leave that to ALE
let g:lsp_diagnostics_enabled = 0
let g:lsp_diagnostics_virtual_text_enabled = 0