add venv selector plugin

This commit is contained in:
Joshua Nussbaum 2025-02-20 08:40:33 -06:00
parent 12be48eb0b
commit 391833fcbf
No known key found for this signature in database
GPG Key ID: BC97EA6E7D9C77AF
1 changed files with 17 additions and 0 deletions

View File

@ -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', '<cmd>VenvSelect<cr>' },
},
}