From ed3aa74c107de7dc3e06367ce4afb20056710441 Mon Sep 17 00:00:00 2001 From: Zhizhen He Date: Wed, 17 Sep 2025 23:16:31 +0800 Subject: [PATCH] fix(python): remove the wrapping `settings` key from `setup()` options (#6069) ## Description Remove the wrapping `settings` key from `setup()` options. ## Related Issue(s) ## Screenshots image ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines. --- lua/lazyvim/plugins/extras/lang/python.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lua/lazyvim/plugins/extras/lang/python.lua b/lua/lazyvim/plugins/extras/lang/python.lua index 3298f6dd..a02ded1f 100644 --- a/lua/lazyvim/plugins/extras/lang/python.lua +++ b/lua/lazyvim/plugins/extras/lang/python.lua @@ -116,10 +116,8 @@ return { "linux-cultist/venv-selector.nvim", cmd = "VenvSelect", opts = { - settings = { - options = { - notify_user_on_venv_activation = true, - }, + options = { + notify_user_on_venv_activation = true, }, }, -- Call config for Python files and load the cached venv automatically