From 2d655a3d378f3ba8695e7c6ee4ffaa23258517a3 Mon Sep 17 00:00:00 2001 From: SamPosh Date: Sun, 9 Apr 2023 11:29:42 -0400 Subject: [PATCH] python debug added --- init.lua | 2 +- lua/kickstart/plugins/debug.lua | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 1296085e..414ce12c 100644 --- a/init.lua +++ b/init.lua @@ -176,7 +176,7 @@ require('lazy').setup({ -- These are some example plugins that I've included in the kickstart repository. -- Uncomment any of the lines below to enable them. -- require 'kickstart.plugins.autoformat', - -- require 'kickstart.plugins.debug', + require 'kickstart.plugins.debug', -- NOTE: The import below automatically adds your own plugins, configuration, etc from `lua/custom/plugins/*.lua` -- You can use this folder to prevent any conflicts with this init.lua if you're interested in keeping diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 0b68c43b..b369daae 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -21,6 +21,7 @@ return { -- Add your own debuggers here 'leoluz/nvim-dap-go', + 'mfussenegger/nvim-dap-python' }, config = function() @@ -36,7 +37,7 @@ return { -- online, please don't ask me how to install them :) ensure_installed = { -- Update this to ensure that you have the debuggers for the langs you want - 'delve', + 'delve','python' }, }