Files
nvim/lua/lsp/cmake.lua
T
2024-01-08 11:18:13 +01:00

20 lines
357 B
Lua

return {
enabled = true,
dependencies = {
"python3",
},
py_module_deps = {
"venv",
},
lspconfig = {
filetypes = {
"cmake",
},
cmd = { "cmake-language-server", },
single_file_support = true,
init_options = {
buildDirectory = "build",
},
},
}