From e8540158b15a0d1921dfc7402f872e0feb39fa5e Mon Sep 17 00:00:00 2001 From: GuillermoOM Date: Mon, 24 Mar 2025 16:00:13 -0700 Subject: [PATCH] fixed debug python path --- lua/kickstart/plugins/debug.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 2e49fde3..023959a1 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -135,6 +135,6 @@ return { dap.listeners.before.event_terminated['dapui_config'] = dapui.close dap.listeners.before.event_exited['dapui_config'] = dapui.close - require('dap-python').setup '~/.virtualenvs/debugpy/bin/python3' + require('dap-python').setup 'python3' end, }