From e5c3667a18c8e9d7e95db8ff764be4ea37bff1fc Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Fri, 17 May 2024 08:14:12 -0600 Subject: [PATCH] suppress write messages for noice.nvim --- dot_config/nvim/lua/community.lua | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dot_config/nvim/lua/community.lua b/dot_config/nvim/lua/community.lua index 2476a84..462d51b 100644 --- a/dot_config/nvim/lua/community.lua +++ b/dot_config/nvim/lua/community.lua @@ -58,4 +58,24 @@ return { }, }, }, + { + "folke/noice.nvim", + opts = { + routes = { + { + filter = { + event = 'msg_show', + any = { + { find = '%d+L, %d+B' }, + { find = '; after #%d+' }, + { find = '; before #%d+' }, + { find = '%d fewer lines' }, + { find = '%d more lines' }, + }, + }, + opts = { skip = true }, + } + } + } + } }