From 147e544bf897b983b64b40c64ca50822f4eb0a2b Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Thu, 3 Oct 2024 04:06:41 -0500 Subject: [PATCH] feat(nvim): add `venv-selector.nvim` --- .../lua/plugins/configs/venv-selector.lua | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 users/price/dots/.config/nvim/lua/plugins/configs/venv-selector.lua diff --git a/users/price/dots/.config/nvim/lua/plugins/configs/venv-selector.lua b/users/price/dots/.config/nvim/lua/plugins/configs/venv-selector.lua new file mode 100644 index 00000000..e33760ec --- /dev/null +++ b/users/price/dots/.config/nvim/lua/plugins/configs/venv-selector.lua @@ -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", + }, + }, +}