diff --git a/config/dap/dap.nix b/config/dap/dap.nix new file mode 100644 index 0000000..fee3e7e --- /dev/null +++ b/config/dap/dap.nix @@ -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 = ["" "q"]; + }; + }; + dap-virtual-text = { + enable = true; + }; + }; + }; +}