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.plug | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .vim/plugin/lsp.plug (limited to '.vim/plugin/lsp.plug') diff --git a/.vim/plugin/lsp.plug b/.vim/plugin/lsp.plug deleted file mode 100644 index 1a5704b..0000000 --- a/.vim/plugin/lsp.plug +++ /dev/null @@ -1,39 +0,0 @@ -Plug 'prabirshrestha/vim-lsp' - -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 - -- cgit v1.2.3