local dap = require('dap') local python_venv = require('utils').get_python_venv() dap.adapters.python = { type = 'executable'; command = 'python'; args = { '-m', 'debugpy.adapter' }; } dap.configurations.python = { { type = 'python'; request = 'launch'; name = "Launch file"; program = "${file}"; pythonPath = python_venv .. '/bin/python'; }, } -- require("dapui").setup{}