23 lines
297 B
Lua
23 lines
297 B
Lua
require "nvchad.mappings"
|
|
local M = {}
|
|
|
|
M.dap = {
|
|
plugin = true,
|
|
n = {
|
|
["<leader>db"] = {"<cmd> DapToggleBreakpoint <CR>"}
|
|
}
|
|
}
|
|
|
|
M.dap_python = {
|
|
plugin = true,
|
|
n = {
|
|
["<leader>dpr"] = {
|
|
function()
|
|
require('dap-python').test_method()
|
|
end
|
|
}
|
|
}
|
|
}
|
|
|
|
return M
|