-
Notifications
You must be signed in to change notification settings - Fork 305
Servers Vim
yaegassy edited this page Feb 26, 2020
·
2 revisions
npm install -g vim-language-server
if executable('vim-language-server')
augroup LspVim
autocmd!
autocmd User lsp_setup call lsp#register_server({
\ 'name': 'vim-language-server',
\ 'cmd': {server_info->['vim-language-server', '--stdio']},
\ 'whitelist': ['vim'],
\ 'initialization_options': {
\ 'vimruntime': $VIMRUNTIME,
\ 'runtimepath': &rtp,
\ }})
augroup END
endif