mirror of
https://github.com/d0zingcat/dotfiles.git
synced 2026-05-14 23:16:47 +00:00
24 lines
451 B
Lua
24 lines
451 B
Lua
-- dap.lua - 调试支持
|
|
return {
|
|
{
|
|
"mfussenegger/nvim-dap",
|
|
event = "VeryLazy",
|
|
},
|
|
{
|
|
"leoluz/nvim-dap-go",
|
|
ft = "go",
|
|
dependencies = { "mfussenegger/nvim-dap" },
|
|
config = function()
|
|
require("dap-go").setup()
|
|
end,
|
|
},
|
|
{
|
|
"mfussenegger/nvim-dap-python",
|
|
ft = "python",
|
|
dependencies = { "mfussenegger/nvim-dap" },
|
|
config = function()
|
|
require("dap-python").setup("python")
|
|
end,
|
|
},
|
|
}
|