configgd cpp

This commit is contained in:
2025-11-02 23:42:25 +01:00
parent 29f5519325
commit 71dcac6d0c
3 changed files with 14 additions and 2 deletions

View File

@@ -22,6 +22,13 @@ return {
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
clangd = {
mason = false,
},
},
},
config = function()
local capabilities = require('cmp_nvim_lsp').default_capabilities()
@@ -49,7 +56,9 @@ return {
vim.lsp.config['angularls']={
vim.lsp.enable('angularls')
}
vim.lsp.config['clangd']={
vim.lsp.enable('clangd')
}
end
}
}