From 5e06ef8bcf11b0cd327bb9ef56707ae5223f7763 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Wed, 27 Aug 2025 13:18:54 +0200 Subject: [PATCH] feat(nvim): disable noice lsp progress --- .../lua/plugins/extras/ui/noice-extended.lua | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/.config/nvim/lua/plugins/extras/ui/noice-extended.lua b/.config/nvim/lua/plugins/extras/ui/noice-extended.lua index 3ee57811..64e7476a 100644 --- a/.config/nvim/lua/plugins/extras/ui/noice-extended.lua +++ b/.config/nvim/lua/plugins/extras/ui/noice-extended.lua @@ -1,16 +1,14 @@ return { "folke/noice.nvim", - opts = function(_, opts) - table.insert(opts.routes, { - filter = { - event = "notify", - find = "No information available", + opts = { + lsp = { + progress = { + enabled = false, }, - opts = { - skip = true, - }, - }) - opts.presets.lsp_doc_border = true - opts.presets.bottom_search = false - end, + }, + presets = { + lsp_doc_border = true, + bottom_search = false, + }, + }, }