Skip to content

Commit 99bb005

Browse files
committed
feat(dap): add dependencies and explicit config for dap-helper
Replace lazy loading with explicit dependencies and setup call to ensure proper initialization order with nvim-dap and dap-ui Signed-off-by: Marcelo Borges <[email protected]>
1 parent 873053a commit 99bb005

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lua/plugins/dap.lua

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,10 @@ return {
2929
},
3030
{
3131
"daic0r/dap-helper.nvim",
32-
event = "VeryLazy",
33-
opts = {},
32+
dependencies = { "rcarriga/nvim-dap-ui", "mfussenegger/nvim-dap" },
33+
config = function()
34+
require("dap-helper").setup()
35+
end,
3436
},
3537
{
3638
"rcarriga/nvim-dap-ui",

0 commit comments

Comments
 (0)