Add overseer and dap

This commit is contained in:
2024-04-04 15:39:28 +02:00
parent 167534d65f
commit 0709c23757
7 changed files with 340 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
return {
name = "CMake Build",
builder = function()
local file = vim.fn.expand("%:p")
return {
cmd = {
"cmake"
},
args = {
"--build",
"build"
},
components = {
{
"on_output_quickfix"
},
"default"
}
}
end,
condition = {
filetype = {
"cmake",
"cpp"
}
}
}