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