From cb69346bc5855221529c31e59fe7b489307ef6d1 Mon Sep 17 00:00:00 2001 From: Olli Date: Sun, 22 Feb 2026 12:23:05 +0100 Subject: [PATCH] nvim: Remove Python DAP configuration --- nvim/lua/plugins/dap-python.lua | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 nvim/lua/plugins/dap-python.lua diff --git a/nvim/lua/plugins/dap-python.lua b/nvim/lua/plugins/dap-python.lua deleted file mode 100644 index 92bbe8c..0000000 --- a/nvim/lua/plugins/dap-python.lua +++ /dev/null @@ -1,11 +0,0 @@ -return { - "https://codeberg.org/mfussenegger/nvim-dap-python", - dependencies = { - "https://codeberg.org/mfussenegger/nvim-dap", - }, - lazy = true, - ft = { "python" }, - config = function() - require('dap-python').setup() - end, -}