25 lines
496 B
Nix
25 lines
496 B
Nix
{ pkgs, ... }: {
|
|
programs.nixvim.plugins.dap = {
|
|
enable = true;
|
|
adapters = { };
|
|
signs = {
|
|
dapBreakpoint = {
|
|
text = "●";
|
|
texthl = "DapBreakpoint";
|
|
};
|
|
dapBreakpointCondition = {
|
|
text = "●";
|
|
texthl = "DapBreakpointCondition";
|
|
};
|
|
dapLogPoint = {
|
|
text = "◆";
|
|
texthl = "DapLogPoint";
|
|
};
|
|
};
|
|
};
|
|
programs.nixvim.plugins = {
|
|
dap-virtual-text.enable = true;
|
|
dap-ui.enable = true;
|
|
};
|
|
}
|