Update debug.lua

This commit is contained in:
SamPosh 2023-04-12 16:43:38 +05:30 committed by GitHub
parent 5a28bb7832
commit de20bf7427
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -83,6 +83,14 @@ return {
-- Install python specific config
require('dap-python').setup() -- Debug with default settings.
-- We can set the config by below mechanism as well
table.insert(require('dap').configurations.python, {
type = 'python',
request = 'launch',
name = 'My custom launch configuration',
program = '${file}',
cwd = '${fileDirName}'
})
end,
}