latest lazy plugins added.

This commit is contained in:
Dan MacLeod
2024-10-18 16:51:33 +10:30
parent 31c6d1ff2a
commit 317e2f6ac0
5 changed files with 120 additions and 27 deletions

View File

@@ -0,0 +1,18 @@
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>" },
},
},
}