master #1

Open
oli wants to merge 912 commits from master into lua
Showing only changes of commit 561b99ac1b - Show all commits

View File

@@ -5,6 +5,7 @@ return {
cmake_generate_options = { "-D", "CMAKE_EXPORT_COMPILE_COMMANDS=1", '-G', 'Ninja' },
cmake_show_console = "always",
cmake_build_directory = "build_nvim",
cmake_dap_configuration = { name = "cpp", type = "codelldb", request = "launch" }, -- dap configuration, optional
},
cmd = {
'CMakeGenerate',
@@ -24,4 +25,13 @@ return {
'CMakeClean',
'CMakeStop',
},
keys = {
{
'<S-F6>',
function()
require('cmake-tools').debug({})
end,
desc = 'Run and debug target from cmake'
}
}
}