blob: 7dbf8e26af91f34eb1913664d5a2178c9cc26d8e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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
require'lspconfig'._root._setup()
EOF
|