nixos/home/programs/nvim/plugins/dap.nix
2025-02-08 13:33:41 +07:00

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;
};
}