1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 11:24:55 +02:00

nvim/lua/user/plugins/lang: rename clangd module to c

This commit is contained in:
Henrik Hautakoski 2026-05-18 21:57:02 +02:00
parent 2c673330a7
commit bd354af9e1
2 changed files with 1 additions and 1 deletions

View file

@ -0,0 +1,16 @@
return {
{
"nvim-treesitter/nvim-treesitter",
opts = {
install = { "c", "cpp" }
}
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
clangd = {}
}
},
}
}