From 58fc3e53acee50bb1b6749d9bc96877e95a3d924 Mon Sep 17 00:00:00 2001 From: rootiest Date: Mon, 11 May 2026 12:38:19 -0400 Subject: [PATCH] feat(noice): suppress Diagnosing and semantic tokens LSP progress notifications --- lua/plugins.lua | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/lua/plugins.lua b/lua/plugins.lua index 868e168..d9f65d2 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -463,11 +463,15 @@ lazyload.on_vim_enter(function() }, routes = { { - filter = { - event = "lsp", - kind = "progress", - find = "Loading workspace", - }, + filter = { event = "lsp", kind = "progress", find = "Loading workspace" }, + opts = { skip = true }, + }, + { + filter = { event = "lsp", kind = "progress", find = "^Diagnosing" }, + opts = { skip = true }, + }, + { + filter = { event = "lsp", kind = "progress", find = "semantic tokens" }, opts = { skip = true }, }, },