From ec03680eb1c303b7f8a52a41a03761b32dbfe7fa Mon Sep 17 00:00:00 2001 From: TraceLumen Date: Wed, 22 Jul 2026 22:00:20 +0300 Subject: [PATCH] upd --- lua/config/lazy.lua | 5 ++++- lua/plugins.lua | 13 +++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/lua/config/lazy.lua b/lua/config/lazy.lua index eeb3864..96182f2 100644 --- a/lua/config/lazy.lua +++ b/lua/config/lazy.lua @@ -31,7 +31,10 @@ require("lazy").setup({ -- colorscheme that will be used when installing plugins. install = { colorscheme = { "habamax" } }, -- automatically check for plugin updates - checker = { enabled = true }, + checker = { + enabled = true, + notify = false + }, }) local function augroup(name) diff --git a/lua/plugins.lua b/lua/plugins.lua index 99be6e9..31e8b89 100644 --- a/lua/plugins.lua +++ b/lua/plugins.lua @@ -53,8 +53,17 @@ return { "folke/noice.nvim", event = "VeryLazy", opts = { - -- add any options here - }, + presets = { + lsp_doc_border = true, + }, + routes = { + { + filter = { event = "msg_show" }, + view = "mini", + opts = { timeout = 900 }, + }, + }, + }, dependencies = { -- if you lazy-load any plugin below, make sure to add proper `module="..."` entries "MunifTanjim/nui.nvim",