1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-08-15 16:38:13 +02:00
dotfiles/nvim/lua/user/plugins/lang/c.lua

13 lines
229 B
Lua

local spec = require('user.utils.lang_spec')
return {
spec.treesitter("c", "cpp"),
{
"neovim/nvim-lspconfig",
opts = {
servers = {
clangd = {}
}
},
}
}