require "nvchad.mappings" local M = {} M.dap = { plugin = true, n = { ["db"] = {" DapToggleBreakpoint "} } } M.dap_python = { plugin = true, n = { ["dpr"] = { function() require('dap-python').test_method() end } } } M.copilot = { n = { [""] = { function() vim.fn.feedkeys(vim.fn['copilot#Accept'](), '') end, "Copilot Accept", {replace_keycodes = true, nowait=true, silent=true, expr=true, noremap=true} } } } return M