summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Windle <kaiwindle@gmail.com>2023-04-12 18:43:08 +0100
committerGitHub <noreply@github.com>2023-04-12 13:43:08 -0400
commitc19fe7af24611c7863e4d218ec1c18ffb813673a (patch)
tree529036b64d396d56cbbf577ca4fdbfca8dec31f3
parent9451e1db7171cf8992c448cdccb9da3a5fb7167b (diff)
mason nvim dap 2.0 removed setup_handlers() (#258)
-rw-r--r--lua/kickstart/plugins/debug.lua10
1 files changed, 4 insertions, 6 deletions
diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua
index 0b68c43..000bcb8 100644
--- a/lua/kickstart/plugins/debug.lua
+++ b/lua/kickstart/plugins/debug.lua
@@ -9,7 +9,6 @@
return {
-- NOTE: Yes, you can install new plugins here!
'mfussenegger/nvim-dap',
-
-- NOTE: And you can specify dependencies as well
dependencies = {
-- Creates a beautiful debugger UI
@@ -22,7 +21,6 @@ return {
-- Add your own debuggers here
'leoluz/nvim-dap-go',
},
-
config = function()
local dap = require 'dap'
local dapui = require 'dapui'
@@ -32,6 +30,10 @@ return {
-- reasonable debug configurations
automatic_setup = true,
+ -- You can provide additional configuration to the handlers,
+ -- see mason-nvim-dap README for more information
+ handlers = {},
+
-- You'll need to check that you have the required things installed
-- online, please don't ask me how to install them :)
ensure_installed = {
@@ -40,10 +42,6 @@ return {
},
}
- -- You can provide additional configuration to the handlers,
- -- see mason-nvim-dap README for more information
- require('mason-nvim-dap').setup_handlers()
-
-- Basic debugging keymaps, feel free to change to your liking!
vim.keymap.set('n', '<F5>', dap.continue)
vim.keymap.set('n', '<F1>', dap.step_into)