mirror of
https://github.com/pnx/dotfiles
synced 2026-08-15 16:38:13 +02:00
13 lines
229 B
Lua
13 lines
229 B
Lua
local spec = require('user.utils.lang_spec')
|
|
|
|
return {
|
|
spec.treesitter("c", "cpp"),
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
clangd = {}
|
|
}
|
|
},
|
|
}
|
|
}
|