---@type MappingsTable local M = {} M.general = { n = { [";"] = { ":", "enter command mode", opts = { nowait = true } }, -- format with conform ["fm"] = { function() require("conform").format() end, "formatting", } }, v = { [">"] = { ">gv", "indent"}, }, } M.dap = { plugin = true, n = { ["db"] = { " DapToggleBreakpoint ", "Add breakpoint at line", }, ["dr"] = { " DapContinue ", "Start or continue the debugger", } } } -- more keybinds! return M