From 0fbce42668875c3499116c17f756f888cfc29ad4 Mon Sep 17 00:00:00 2001 From: atropos Date: Thu, 21 Mar 2024 07:05:51 +0000 Subject: [PATCH] debugpy needs to be not bound to the dir. --- lua/atro/plugins/lang_specific/python.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/atro/plugins/lang_specific/python.lua b/lua/atro/plugins/lang_specific/python.lua index 0948a56..e1b7f5a 100644 --- a/lua/atro/plugins/lang_specific/python.lua +++ b/lua/atro/plugins/lang_specific/python.lua @@ -8,7 +8,7 @@ return { config = function() require("atro.utils.mason").install("debugpy") local dappy = require("dap-python") - dappy.setup("~/.local/share/nvim/mason/packages/debugpy/venv/bin/python") -- thats where Mason will drop it + dappy.setup() dappy.test_runner = "pytest" end, },