fix(python): remove the wrapping settings key from setup() options

This commit is contained in:
Zhizhen He 2025-05-13 15:12:26 +08:00 committed by GitHub
parent 25abbf546d
commit 76c5bb9e9d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -120,12 +120,10 @@ return {
return LazyVim.has("telescope.nvim") return LazyVim.has("telescope.nvim")
end, end,
opts = { opts = {
settings = {
options = { options = {
notify_user_on_venv_activation = true, notify_user_on_venv_activation = true,
}, },
}, },
},
-- Call config for python files and load the cached venv automatically -- Call config for python files and load the cached venv automatically
ft = "python", ft = "python",
keys = { { "<leader>cv", "<cmd>:VenvSelect<cr>", desc = "Select VirtualEnv", ft = "python" } }, keys = { { "<leader>cv", "<cmd>:VenvSelect<cr>", desc = "Select VirtualEnv", ft = "python" } },