mirror of
https://github.com/akr2002/nv.git
synced 2024-11-12 20:19:45 +00:00
34 lines
613 B
Nix
34 lines
613 B
Nix
|
{
|
||
|
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;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|