Fixed errors

This commit is contained in:
Wil Simpson 2024-06-29 16:35:40 -04:00
parent 8d946c13e7
commit 9d965db75f
3 changed files with 112 additions and 10 deletions

View file

@ -13,6 +13,7 @@ return {
-- NOTE: And you can specify dependencies as well
dependencies = {
-- Creates a beautiful debugger UI
'nvim-neotest/nvim-nio',
'rcarriga/nvim-dap-ui',
-- Installs the debug adapters for you
@ -53,10 +54,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, { desc = '[DAP] Continue' })
vim.keymap.set('n', '<F1>', dap.step_over, { desc = '[DAP] Over' })