diff --git a/nvim/after/plugin/dap.lua b/nvim/after/plugin/dap.lua index 07caf71..d6e5e5d 100644 --- a/nvim/after/plugin/dap.lua +++ b/nvim/after/plugin/dap.lua @@ -1,5 +1,8 @@ vim.keymap.set('n', '', function() require('dap').continue() end) vim.keymap.set('n', 'b', function() require('dap').toggle_breakpoint() end) +vim.keymap.set('n', '', function() require('dap').step_over() end) +vim.keymap.set('n', '', function() require('dap').step_into() end) +vim.keymap.set('n', '', function() require('dap').step_out() end) require('dap').adapters.lldb = { type = 'executable',