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', }, }