Update nvim config to 0.11.1 standards.

This commit is contained in:
Martin Lasson 2025-04-10 10:17:10 +02:00
parent fe23a8c0df
commit ae1489527c
16 changed files with 45 additions and 88 deletions

14
nvim/lsp/cmake.lua Normal file
View file

@ -0,0 +1,14 @@
return {
cmd = { "cmake-language-server" },
filetypes = { "cmake" },
root_markers = {
"CMakeLists.txt",
"CMakePresets.json",
"CTestConfig.cmake",
"build",
"cmake",
},
init_options = {
buildDirectory = "build",
},
}