more nvim-dap configuration
This commit is contained in:
parent
2b768f0b87
commit
e0f8c8526a
2 changed files with 30 additions and 2 deletions
|
@ -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 = {
|
||||
|
|
|
@ -103,6 +103,7 @@
|
|||
|
||||
chadtree = {
|
||||
enable = true;
|
||||
keymap.openFileFolder.collapse = [ "l" ];
|
||||
};
|
||||
|
||||
fzf-lua = {
|
||||
|
@ -139,11 +140,17 @@
|
|||
dap = {
|
||||
enable = true;
|
||||
adapters = {
|
||||
executables = { };
|
||||
executables = {
|
||||
on_config = { };
|
||||
};
|
||||
servers = { };
|
||||
};
|
||||
};
|
||||
|
||||
dap-ui = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
dap-python = {
|
||||
enable = true;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue