Files
nvim/lua/plugins/venv-selector.lua
2026-06-09 14:23:18 +00:00

18 lines
523 B
Lua

return {
"linux-cultist/venv-selector.nvim",
dependencies = {
"neovim/nvim-lspconfig",
{ "nvim-telescope/telescope.nvim", branch = "master", dependencies = { "nvim-lua/plenary.nvim" } },
},
ft = "python", --load when python file opens
lazy = false,
branch = "main", -- This is the regexp branch, use this for the new version
keys = {
{ "<Leader>vs", "<cmd>VenvSelect<cr>" },
},
---@type venv-selector.Config
opts = {
-- Your settings go here
},
}