18 lines
523 B
Lua
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
|
|
},
|
|
}
|