added overseer

This commit is contained in:
2022-11-30 21:09:02 +01:00
parent fb5373f0a7
commit 2ff32c06fd
6 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,12 @@
return {
name = 'CMake Clean for nvim',
builder = function()
return {
cmd = { 'cmake' },
args = { '--build', '.',
'-t', 'clean' },
cwd = 'build_nvim',
}
end,
}