From 6f8d32df89a2e4781cd0a50fb8584bb757cc108e Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Tue, 28 Oct 2025 07:48:44 +0100 Subject: [PATCH] [Noice] Make more useful --- nvim/lua/plugins/lsp/fidget.lua | 13 ------------- nvim/lua/plugins/style/noice.lua | 12 +++++++++++- 2 files changed, 11 insertions(+), 14 deletions(-) delete mode 100755 nvim/lua/plugins/lsp/fidget.lua diff --git a/nvim/lua/plugins/lsp/fidget.lua b/nvim/lua/plugins/lsp/fidget.lua deleted file mode 100755 index e75c012..0000000 --- a/nvim/lua/plugins/lsp/fidget.lua +++ /dev/null @@ -1,13 +0,0 @@ -return { - -- notifications && lsp progress msgs - "j-hui/fidget.nvim", - config = function() - require("fidget").setup({ - notification = { - window = { - winblend = 0, - }, - }, - }) - end, -} diff --git a/nvim/lua/plugins/style/noice.lua b/nvim/lua/plugins/style/noice.lua index 221954d..6acc096 100755 --- a/nvim/lua/plugins/style/noice.lua +++ b/nvim/lua/plugins/style/noice.lua @@ -11,7 +11,7 @@ return { }, config = function() require("notify").setup({ - max_width = 80, + max_width = 60, minimum_width = 30, render = "wrapped-default", -- default, minimal, simple, compact, wrapped-compact or wrapped-default stages = "slide", -- fade_in_slide_out, fade, slide, static @@ -33,6 +33,16 @@ return { inc_rename = false, -- enables an input dialog for inc-rename.nvim lsp_doc_border = false, -- add a border to hover docs and signature help }, + routes = { + { + filter = { + event = "msg_show", + kind = "", + find = "written", + }, + opts = { skip = true }, + }, + }, }) end, }