20 lines
352 B
Lua
20 lines
352 B
Lua
return {
|
|
enabled = true,
|
|
lspconfig = {
|
|
filetypes = {
|
|
"c",
|
|
"cpp",
|
|
"objc",
|
|
"objcpp",
|
|
"cuda",
|
|
"proto",
|
|
},
|
|
cmd = {
|
|
"clangd",
|
|
"--clang-tidy",
|
|
"--enable-config",
|
|
},
|
|
single_file_support = true,
|
|
},
|
|
}
|