feat(debugger,keymaps): dap and dapui debugging configuration

This commit is contained in:
Guz
2025-12-12 10:34:25 -03:00
parent 1fdc7ec7fe
commit a9a59ec260
3 changed files with 43 additions and 0 deletions

View File

@@ -21,6 +21,17 @@ lze.load({
{ "lazydev.nvim", on_require = "lazydev" },
{ import = "dot.lsp" },
-- Debugger
{
"nvim-dap",
after = function()
require("dot.debugger")
end,
on_require = { "dap", "dapui" },
},
{ "nvim-dap-ui", dep_of = "nvim-dap" },
{ "nvim-nio", dep_of = "nvim-dap-ui" },
-- Formatting
{
"conform.nvim",