mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 18:49:45 +00:00
add dap
This commit is contained in:
parent
2c58659ade
commit
70b56a6e87
1 changed files with 33 additions and 0 deletions
33
config/dap/dap.nix
Normal file
33
config/dap/dap.nix
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
plugins.dap = {
|
||||||
|
enable = true;
|
||||||
|
signs = {
|
||||||
|
dapBreakpoint = {
|
||||||
|
text = "●";
|
||||||
|
texthl = "DapBreakpoint";
|
||||||
|
};
|
||||||
|
dapBreakpointCondition = {
|
||||||
|
text = "●";
|
||||||
|
texthl = "DapBreakpointCondition";
|
||||||
|
};
|
||||||
|
dapLogPoint = {
|
||||||
|
text = "◆";
|
||||||
|
texthl = "DapLogPoint";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
configurations = {
|
||||||
|
dap-python = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
dap-ui = {
|
||||||
|
enable = true;
|
||||||
|
floating.mappings = {
|
||||||
|
close = ["<ESC>" "q"];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
dap-virtual-text = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue