nvim dap python with additional configuration

This commit is contained in:
SamPosh 2023-04-20 21:01:42 +05:30 committed by GitHub
parent 5b7bdcc5fb
commit 12a60bb991
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 24 deletions

View File

@ -1,23 +1,21 @@
local dap = require('dap')
return function()
local python_install_path = vim.fn.exepath('python')
dap.adapters.python = {
type = "executable",
command = python_install_path, -- use "which python" command will give you python installed path
args = {
"-m",
"debugpy.adapter",
},
}
--local python_install_path = vim.fn.exepath('python')
require('dap-python').setup() -- Debug with default settings.
dap.configurations.python = {
-- We can set additional custom config by below mechanism as well
--[[
table.insert(require('dap').configurations.python,
{
type = "python",
request = "launch",
name = "Launch file",
program = "${file}", -- This configuration will launch the current file if used.
type = 'python',
request = 'launch',
name = 'My custom launch configuration',
program = '${file}',
cwd = vim.fn.getcwd(),
console= "integratedTerminal",
},
})
--]]
table.insert(require('dap').configurations.python,
{
name= "Pytest: Current File",
type= "python",
@ -30,7 +28,8 @@ return function()
"--log-file=test_out.log"
},
console= "integratedTerminal",
},
})
table.insert(require('dap').configurations.python,
{
name= "Profile python: Current File",
type= "python",
@ -42,6 +41,5 @@ return function()
"${file}"
},
console= "integratedTerminal",
},
}
end
})
end