more nvim-dap configuration

This commit is contained in:
chloe 2025-07-04 15:24:14 +02:00
parent 2b768f0b87
commit e0f8c8526a
2 changed files with 30 additions and 2 deletions

View file

@ -76,7 +76,28 @@
}; };
} }
# toggle comments # nvim-dap
{
mode = "n";
action = {
__raw = "function() require('dap').continue() end";
};
key = "<Leader>dd";
options = {
desc = "Start debugging session";
};
}
{
mode = "n";
action = {
__raw = "function() require";
};
key = "ds";
options = {
desc = "Set breakpoint";
};
}
]; ];
plugins.fzf-lua.keymaps = { plugins.fzf-lua.keymaps = {

View file

@ -103,6 +103,7 @@
chadtree = { chadtree = {
enable = true; enable = true;
keymap.openFileFolder.collapse = [ "l" ];
}; };
fzf-lua = { fzf-lua = {
@ -139,11 +140,17 @@
dap = { dap = {
enable = true; enable = true;
adapters = { adapters = {
executables = { }; executables = {
on_config = { };
};
servers = { }; servers = { };
}; };
}; };
dap-ui = {
enable = true;
};
dap-python = { dap-python = {
enable = true; enable = true;
}; };