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, +}