Skip to content

Commit 391833f

Browse files
committed
add venv selector plugin
1 parent 12be48e commit 391833f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
return {
2+
'linux-cultist/venv-selector.nvim',
3+
dependencies = {
4+
'neovim/nvim-lspconfig',
5+
'mfussenegger/nvim-dap',
6+
'mfussenegger/nvim-dap-python', --optional
7+
{ 'nvim-telescope/telescope.nvim', branch = '0.1.x', dependencies = { 'nvim-lua/plenary.nvim' } },
8+
},
9+
lazy = false,
10+
branch = 'regexp', -- This is the regexp branch, use this for the new version
11+
config = function()
12+
require('venv-selector').setup()
13+
end,
14+
keys = {
15+
{ ',v', '<cmd>VenvSelect<cr>' },
16+
},
17+
}

0 commit comments

Comments
 (0)