1
Fork 0
nixos-system-config/dotfiles/nvim/lua/plugins/lsp/c.lua
caem 712f401948
nvim: Replace clangd with ccls
Updating clangd did indeed not help. Maybe this fork of clangd fixed it
or something.
2024-09-07 19:56:59 +02:00

5 lines
125 B
Lua

return function ()
require"lspconfig".ccls.setup {
capabilities = require"cmp_nvim_lsp".default_capabilities()
}
end