You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
496 B
Lua
18 lines
496 B
Lua
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>' },
|
|
},
|
|
}
|