2024-09-15 22:20:50 +02:00
|
|
|
require "nvchad.mappings"
|
2024-03-02 01:01:31 +01:00
|
|
|
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
|