Add python debugger support

This commit is contained in:
Zackarias Montell
2025-05-15 13:59:35 +02:00
parent ae7bcb5bfc
commit 916fdf73e3
4 changed files with 9 additions and 1 deletions

View File

@@ -23,6 +23,7 @@ return {
-- Add your own debuggers here
'leoluz/nvim-dap-go',
'mfussenegger/nvim-dap-python',
},
keys = {
-- Basic debugging keymaps, feel free to change to your liking!
@@ -95,6 +96,7 @@ return {
ensure_installed = {
-- Update this to ensure that you have the debuggers for the langs you want
'delve',
'debugpy',
},
}
@@ -144,5 +146,6 @@ return {
detached = vim.fn.has 'win32' == 0,
},
}
require('dap-python').setup 'python'
end,
}