diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index 2c9de9d..d7b82e9 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -14,12 +14,12 @@ require("lazy").setup({ -- { import = "lazyvim.plugins.extras.lang.typescript" }, -- { import = "lazyvim.plugins.extras.lang.json" }, -- { import = "lazyvim.plugins.extras.ui.mini-animate" }, - -- import/override with your plugins - { import = "plugins" }, -- include copilot { import = "lazyvim.plugins.extras.coding.copilot" }, { import = "lazyvim.plugins.extras.test.core" }, + -- import/override with your plugins - should be last since these are my customizations + { import = "plugins" }, }, defaults = { -- By default, only LazyVim plugins will be lazy-loaded. Your custom plugins will load during startup. diff --git a/lua/plugins/extras_ruby_mine.lua b/lua/plugins/extras_ruby_mine.lua index 7062b23..8b55f35 100644 --- a/lua/plugins/extras_ruby_mine.lua +++ b/lua/plugins/extras_ruby_mine.lua @@ -35,7 +35,8 @@ return { end, }, keys = { - { "te", function() require("dap").repl.open() end, desc = "Debug T(e)rminal" }, + -- 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" }, }, },