diff --git a/lua/plugins/extras_ruby_mine.lua b/lua/plugins/extras_ruby_mine.lua index e579463..023d68b 100644 --- a/lua/plugins/extras_ruby_mine.lua +++ b/lua/plugins/extras_ruby_mine.lua @@ -34,8 +34,9 @@ return { }, keys = { -- https://github.com/mfussenegger/nvim-dap/blob/master/doc/dap.txt - { "te", function() require("dap").repl.toggle() end, desc = "Debug Toggle" }, - { "tn", function() require("dap").continue() end, desc = "Debug Next/Continue" }, + { "te", function() require("dap").repl.toggle() end, desc = "DAP Term Toggle" }, + { "tn", function() require("dap").continue() end, desc = "DAP Next/Continue" }, + { "tb", function() require("dap").toggle_breakpoint() end, desc = "DAP Breakpoint Toggle" }, }, }, {