From 391833fcbf3791db3adf84bc7ba23b77f4c2dcc5 Mon Sep 17 00:00:00 2001 From: Joshua Nussbaum <145164917+jnussbaumol@users.noreply.github.com> Date: Thu, 20 Feb 2025 08:40:33 -0600 Subject: [PATCH] add venv selector plugin --- lua/custom/plugins/venv-selector.lua | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 lua/custom/plugins/venv-selector.lua diff --git a/lua/custom/plugins/venv-selector.lua b/lua/custom/plugins/venv-selector.lua new file mode 100644 index 00000000..e2c302bc --- /dev/null +++ b/lua/custom/plugins/venv-selector.lua @@ -0,0 +1,17 @@ +return { + 'linux-cultist/venv-selector.nvim', + dependencies = { + 'neovim/nvim-lspconfig', + 'mfussenegger/nvim-dap', + 'mfussenegger/nvim-dap-python', --optional + { 'nvim-telescope/telescope.nvim', branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } }, + }, + lazy = false, + branch = 'regexp', -- This is the regexp branch, use this for the new version + config = function() + require('venv-selector').setup() + end, + keys = { + { ',v', 'VenvSelect' }, + }, +}