From c994896bdc32a2ba5619b6e638ed823a72c39830 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Wed, 15 Mar 2023 22:17:00 +0000 Subject: [PATCH] Added more keybinds to nvim-dap --- nvim/after/plugin/dap.lua | 3 +++ 1 file changed, 3 insertions(+) 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',