local M = {} M.dap = { plugin = true, n = { ["db"] = { " DapToggleBreakpoint ", "Add breakpoint at line" }, ["dus"] = { function () local widgets = require('dap.ui.widgets'); local sidebar = widgets.sidebar(widgets.scopes); sidebar.open(); end, } } } M.crates = { n = { ["rcu"] = { function () require('crates').upgrade_all_crates() end, "update crates" } } } M.dap_go = { plugin = true, n = { ["gdt"] = { function() require('dap-go').debug_test() end, "Debug go test" }, ["gdl"] = { function() require('dap-go').debug_test() end, "Debug last go test" }, } } return M