Files
dotfiles/nvim/lua/plugins/dap-python.lua
Joshua Finch c7055d45f9 fix: Fixing the python DAP config as it was just not functioning
correctly with the Mason setup.
2025-07-26 20:30:10 -05:00

7 lines
178 B
Lua

return {
'mfussenegger/nvim-dap-python',
config = function()
require('dap-python').setup('~/.local/share/nvim/mason/packages/debugpy/venv/bin/python')
end,
}