mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
16 lines
356 B
Lua
16 lines
356 B
Lua
-- Debugger setups
|
|
return {
|
|
{ "mfussenegger/nvim-dap" },
|
|
{
|
|
"rcarriga/nvim-dap-ui",
|
|
opts = {},
|
|
dependencies = { "mfussenegger/nvim-dap", "nvim-neotest/nvim-nio" },
|
|
},
|
|
{ "theHamsta/nvim-dap-virtual-text", opts = {} },
|
|
{
|
|
"mfussenegger/nvim-dap-python",
|
|
config = function()
|
|
require("dap-python").setup("uv")
|
|
end,
|
|
},
|
|
}
|