feat(lsp): golangci-lint lsp check installation

This commit is contained in:
Guz
2025-11-09 12:37:00 -03:00
parent 8ff64154fc
commit 02e7ccf965

View File

@@ -37,7 +37,13 @@ local lsps = {
},
},
["gopls"] = {},
["golangci_lint_ls"] = {},
["golangci_lint_ls"] = function()
if vim.fn.executable("golangci-list") == 1 then
return {}
else
return nil
end
end,
["html"] = {},
-- ["htmx"] = {}, # BORKED: blink.cmp stops working whtn htmx-lsp is attached https://github.com/Saghen/blink.cmp/issues/825
["jsonls"] = {},