Trying to get clangd to use external binary

This commit is contained in:
Ceferino Patino 2024-08-28 12:16:23 -05:00
commit 036008f081
Signed by: c4patino
SSH key fingerprint: SHA256:9fQ9TsujGrdNNi76mnsu63v7dS5JOmHRZEqBOl49OR8

View file

@ -41,5 +41,12 @@ require("mason-lspconfig").setup({
}
}
end,
["clangd"] = function()
local lspconfig = require("lspconfig")
lspconfig.clangd.setup {
capabilities = capabilities,
cmd = "clangd",
}
end,
}
})