blob: d98260317df7ce02836fe985c653a2840c920327 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
if exists('g:lspconfig')
finish
endif
let g:lspconfig = 1
lua << EOF
lsp_complete_installable_servers = function()
return table.concat(require'lspconfig'.available_servers(), '\n')
end
EOF
|