From 996454585f29e3e080fee66594464d18ee7443ea Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Sat, 18 Nov 2023 14:19:15 +0100 Subject: [PATCH] feat(nvim): add border to hover and filter out no information messages --- nvim/lua/plugins/noice.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/nvim/lua/plugins/noice.lua b/nvim/lua/plugins/noice.lua index fc8674c..8fb526a 100644 --- a/nvim/lua/plugins/noice.lua +++ b/nvim/lua/plugins/noice.lua @@ -8,5 +8,18 @@ return { enabled = false, }, }, + routes = { + { + filter = { + event = "notify", + find = "No information available", + }, + opts = { skip = true }, + }, + }, + presets = { + inc_rename = true, + lsp_doc_border = true, + }, }, }