kickstart.nvim/lua/custom/plugins/venv-selector.lua

14 lines
340 B
Lua

return {
'linux-cultist/venv-selector.nvim',
dependencies = {
'neovim/nvim-lspconfig',
'mfussenegger/nvim-dap',
'mfussenegger/nvim-dap-python', --optional
},
lazy = false,
branch = 'regexp', -- This is the regexp branch, use this for the new version
config = function()
require('venv-selector').setup()
end,
}