From dc74cfc9518046133edb3ea0177eaac7c3a80f58 Mon Sep 17 00:00:00 2001 From: "markus.dieckmann" Date: Thu, 26 Jun 2025 08:52:37 +0200 Subject: [PATCH] wip dap --- nvim/lua/plugins/dap.lua | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 nvim/lua/plugins/dap.lua diff --git a/nvim/lua/plugins/dap.lua b/nvim/lua/plugins/dap.lua new file mode 100644 index 0000000..91b18c1 --- /dev/null +++ b/nvim/lua/plugins/dap.lua @@ -0,0 +1,26 @@ +return { + "mfussenegger/nvim-dap", + lazy = true, + dependencies = { + "rcarriga/nvim-dap-ui", + "nvim-neotest/nvim-nio", + "theHamsta/nvim-dap-virtual-text" + }, + keys = { + { + "db", + function() + require("dap").toggle_breakpoint() + end, + }, + { + "dc", + function() + require("dap").continue() + end, + }, + }, + config = function() + require("dapui").setup() + end, +}