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 = {
|
plugins.fzf-lua.keymaps = {
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue