From 3264ed5de535d2dc483c54a6b1ecd81fb6c1e079 Mon Sep 17 00:00:00 2001 From: Anjishnu Banerjee Date: Sun, 20 Apr 2025 10:46:39 +0530 Subject: [PATCH] Improve fidget.nvim to handle all notifications --- init.lua | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 776c6873..ad58aef4 100644 --- a/init.lua +++ b/init.lua @@ -478,8 +478,15 @@ require('lazy').setup({ 'williamboman/mason-lspconfig.nvim', 'WhoIsSethDaniel/mason-tool-installer.nvim', - -- Useful status updates for LSP. - { 'j-hui/fidget.nvim', opts = {} }, + -- Provides polished UI notifications for LSP and other plugins. + { + 'j-hui/fidget.nvim', + opts = { + notification = { + override_vim_notify = true, -- Override vim.notify() to use Fidget's notifications + }, + }, + }, -- Allows extra capabilities provided by blink.cmp 'saghen/blink.cmp',