Python dap support sample

This commit is contained in:
SamPosh 2023-04-20 14:59:53 +05:30 committed by GitHub
parent 685f99b9e0
commit 2d5130db44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -32,13 +32,18 @@ return {
-- You can provide additional configuration to the handlers,
-- see mason-nvim-dap README for more information
handlers = {},
handlers = {
-- python debug configuration is available in this file. Uncomment to add python support
-- python = require('kickstart.plugins.dap.handler.python'),
},
-- You'll need to check that you have the required things installed
-- online, please don't ask me how to install them :)
ensure_installed = {
-- Update this to ensure that you have the debuggers for the langs you want
'delve',
'python'
},
}