1
0
Fork 0

nvim: perlls: remove broken check and disable autostart

This commit is contained in:
tastytea 2022-09-08 01:33:24 +02:00
parent f7fb3b1a0e
commit b26ed328a7
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 6 additions and 7 deletions

View File

@ -193,13 +193,12 @@ if vim.fn.executable('gopls') > 0 then
})
end
-- FIXME: binary probably doesn't exist even when installed
if vim.fn.executable('perlls') > 0 then
lspconfig.perlls.setup({
on_attach = on_attach,
capabilities = capabilities
})
end
-- there is no good and fast enough way to check for its existence
lspconfig.perlls.setup({
autostart = false,
on_attach = on_attach,
capabilities = capabilities
})
if vim.fn.executable('qml-lsp') > 0 then
lspconfig.qml_lsp.setup({