local map = require('config.utils').map vim.cmd [[command! BreakpointToggle lua require('dap').toggle_breakpoint()]] vim.cmd [[command! Debug lua require('dap').continue()]] vim.cmd [[command! DapREPL lua require('dap').repl.open()]] map('n', '', [[lua require'dap'.continue()]]) map('n', '', [[lua require'dap'.step_over()]]) map('n', '', [[lua require'dap'.step_into()]]) map('n', '', [[lua require'dap'.step_out()]])