From a83dea3c8c92a30c83760c0e71bb35322190105b Mon Sep 17 00:00:00 2001 From: gxlin Date: Tue, 20 Jul 2021 23:30:18 +0800 Subject: Config of vim lsp --- .vim/plugin/lsp.vim | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .vim/plugin/lsp.vim (limited to '.vim/plugin/lsp.vim') diff --git a/.vim/plugin/lsp.vim b/.vim/plugin/lsp.vim new file mode 100644 index 0000000..2816300 --- /dev/null +++ b/.vim/plugin/lsp.vim @@ -0,0 +1,38 @@ +if executable('gopls') + au User lsp_setup call lsp#register_server({ + \ 'name': 'gopls', + \ 'cmd': {server_info->['gopls']}, + \ 'allowlist': ['go'], + \ }) +endif + +function! s:on_lsp_buffer_enabled() abort + setlocal omnifunc=lsp#complete + setlocal signcolumn=no + if exists('+tagfunc') | setlocal tagfunc=lsp#tagfunc | endif + nmap gd (lsp-definition) + nmap gs (lsp-document-symbol-search) + nmap gS (lsp-workspace-symbol-search) + nmap gr (lsp-references) + nmap gi (lsp-implementation) + nmap gt (lsp-type-definition) + nmap rn (lsp-rename) + nmap [g (lsp-previous-diagnostic) + nmap ]g (lsp-next-diagnostic) + nmap K (lsp-hover) + inoremap lsp#scroll(+4) + inoremap lsp#scroll(-4) + + let g:lsp_format_sync_timeout = 1000 + autocmd! BufWritePre *.rs,*.go call execute('LspDocumentFormatSync') + + " refer to doc to add more commands +endfunction + +augroup lsp_install + au! + " call s:on_lsp_buffer_enabled only for languages that has the server registered. + autocmd User lsp_buffer_enabled call s:on_lsp_buffer_enabled() +augroup END + +let g:lsp_settings_filetype_lua = 'sumneko-lua-language-server' -- cgit v1.2.3