feat(nvim): add venv-selector.nvim
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 35s

This commit is contained in:
Price Hiller 2024-10-03 04:06:41 -05:00
parent 9ba3443305
commit 147e544bf8
Signed by: Price
GPG Key ID: C3FADDE7A8534BEB

View File

@ -0,0 +1,25 @@
return {
{
"linux-cultist/venv-selector.nvim",
dependencies = {
"neovim/nvim-lspconfig",
"mfussenegger/nvim-dap",
"mfussenegger/nvim-dap-python",
"nvim-telescope/telescope.nvim",
},
branch = "regexp",
config = function()
require("venv-selector").setup({
settings = {
options = {
notify_user_on_venv_activation = true,
},
},
})
end,
ft = "python",
cmd = {
"VenvSelect",
},
},
}