mirror of
https://github.com/kristoferssolo/SoloVim.git
synced 2025-10-21 20:10:41 +00:00
17 lines
295 B
Lua
17 lines
295 B
Lua
return {
|
|
"Civitasv/cmake-tools.nvim",
|
|
ft = { "cpp", "c", "cmake" },
|
|
dependencies = { "nvim-lua/plenary.nvim" },
|
|
opts = {
|
|
cmake_build_directory = "target/build/",
|
|
cmake_executor = {
|
|
default_opts = {
|
|
quickfix = {
|
|
show = "only_on_error",
|
|
size = 15,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|