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:
parent
2c673330a7
commit
bd354af9e1
2 changed files with 1 additions and 1 deletions
16
nvim/lua/user/plugins/lang/c.lua
Normal file
16
nvim/lua/user/plugins/lang/c.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
return {
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = {
|
||||
install = { "c", "cpp" }
|
||||
}
|
||||
},
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
servers = {
|
||||
clangd = {}
|
||||
}
|
||||
},
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue