diff --git a/.config/nvim/lua/plugins/extras/lang/python-extended.lua b/.config/nvim/lua/plugins/extras/lang/python-extended.lua index 2cdf1fd8..d3cb7268 100644 --- a/.config/nvim/lua/plugins/extras/lang/python-extended.lua +++ b/.config/nvim/lua/plugins/extras/lang/python-extended.lua @@ -32,6 +32,20 @@ return { }, }, opts = {}, + -- stylua: ignore + keys = { + { "pU", function() require("py-requirements").upgrade() end, desc = "Update Package (Python)" }, + { "pi", function() require("py-requirements").show_description() end, desc = "Package Info (Python)" }, + { "pa", function() require("py-requirements").upgrade_all() end, desc = "Update All Packages (Python)" }, + }, + }, + { + "folke/which-key.nvim", + opts = { + defaults = { + ["p"] = { name = " packages" }, + }, + }, }, { "luckasRanarison/nvim-devdocs",