Files
dots/home/editors/nvim/plugins/utils/debugging.nix
2025-12-01 18:24:34 +01:00

46 lines
919 B
Nix

{
plugins.neotest.enable = true;
extraConfigLua =
# lua
''
-- require("neotest").setup({
-- adapters = {
-- require("rustaceanvim.neotest")
-- },
-- })
'';
plugins.dap = {
enable = true;
signs = {
dapBreakpoint = {
text = "";
texthl = "DiagnosticError";
numhl = "DapBreakpoint";
};
dapBreakpointCondition = {
text = "";
texthl = "DiagnosticWarn";
numhl = "DiagnosticWarn";
};
dapLogPoint = {
text = "󱂅";
texthl = "Comment";
numhl = "Comment";
};
dapStopped = {
text = "";
texthl = "IncSearch";
linehl = "CursorLine";
numhl = "IncSearch";
};
dapBreakpointRejected = {
text = "";
texthl = "DiagnosticError";
numhl = "DiagnosticError";
};
};
};
}