From ea7010cac1fca72ef763691614f5f9f2a11ad68b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Mu=C3=B1oz=20Paredes?= Date: Mon, 6 May 2024 13:31:58 +0200 Subject: [PATCH] Fix debugpy automatic installation --- init.lua | 1 + lua/kickstart/plugins/debug.lua | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 9d2bbe19..6a7e9722 100644 --- a/init.lua +++ b/init.lua @@ -560,6 +560,7 @@ require('lazy').setup({ pyright = {}, ruff = {}, taplo = {}, -- LSP for toml files + debugpy = {}, -- rust_analyzer = {}, -- ... etc. See `:help lspconfig-all` for a list of all the pre-configured LSPs -- diff --git a/lua/kickstart/plugins/debug.lua b/lua/kickstart/plugins/debug.lua index 19b1355a..3359999b 100644 --- a/lua/kickstart/plugins/debug.lua +++ b/lua/kickstart/plugins/debug.lua @@ -42,7 +42,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 - 'debugpy', + 'python', }, }