29 lines
947 B
Nix
29 lines
947 B
Nix
{
|
|
plugins = {
|
|
dap = {
|
|
enable = true;
|
|
luaConfig.post = ''
|
|
local dap = require('dap')
|
|
dap.adapters.lldb = {
|
|
type = 'executable',
|
|
command = '/run/current-system/sw/bin/lldb-dap', -- adjust as needed, must be absolute path
|
|
name = 'lldb'
|
|
}
|
|
dap.configurations.cpp = {
|
|
{
|
|
name = 'Launch',
|
|
type = 'lldb',
|
|
request = 'launch',
|
|
program = function()
|
|
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
|
|
end,
|
|
cwd = "''${workspaceFolder}",
|
|
stopOnEntry = false,
|
|
args = {},
|
|
runInTerminal = true,
|
|
},
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
}
|