From b2917bd3bfe61c40e686f5a2c20f540430945b73 Mon Sep 17 00:00:00 2001 From: Frederick Zhang Date: Sun, 1 Mar 2026 20:33:07 +1100 Subject: [PATCH] fix(python): set venv-selector.nvim override_notify = false (#6936) ## Description This is a new option in venv-selector.nvim which stops it from overriding vim.notify, so that it no longer interferes with noice.nvim. See also [1]. [1] https://github.com/linux-cultist/venv-selector.nvim/issues/240 ## Related Issue(s) N/A ## Screenshots N/A ## Checklist - [x] I've read the [CONTRIBUTING](https://github.com/LazyVim/LazyVim/blob/main/CONTRIBUTING.md) guidelines. --- lua/lazyvim/plugins/extras/lang/python.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/lazyvim/plugins/extras/lang/python.lua b/lua/lazyvim/plugins/extras/lang/python.lua index bfe9e210..eb0bd5a8 100644 --- a/lua/lazyvim/plugins/extras/lang/python.lua +++ b/lua/lazyvim/plugins/extras/lang/python.lua @@ -114,6 +114,7 @@ return { opts = { options = { notify_user_on_venv_activation = true, + override_notify = false, }, }, -- Call config for Python files and load the cached venv automatically