summaryrefslogtreecommitdiff
path: root/lua/config/plugins
diff options
context:
space:
mode:
authorMarcelo <setanta@gmail.com>2025-03-30 04:26:45 -0300
committerMarcelo <setanta@gmail.com>2025-03-30 04:26:45 -0300
commitb0eb562397813b2d1474a690c292570a2641096d (patch)
treed2b5694ea7896131e8287ba611a46cdd756987cb /lua/config/plugins
parent59545fa03fd37ab712a721ff0868f2493e689fcf (diff)
Add fidget.nvim for nicer notification backend.
It is less visually cumbersome than other plugins I've used in the past.
Diffstat (limited to 'lua/config/plugins')
-rw-r--r--lua/config/plugins/ux.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/config/plugins/ux.lua b/lua/config/plugins/ux.lua
index d69db36..6754650 100644
--- a/lua/config/plugins/ux.lua
+++ b/lua/config/plugins/ux.lua
@@ -34,4 +34,14 @@ return {
-- vim-fetch enables Vim to process line and column jump specifications
-- in file paths as found in stack traces and similar output.
{ "wsdjeg/vim-fetch" },
+
+ -- Extensible UI for Neovim notifications and LSP progress messages.
+ {
+ "j-hui/fidget.nvim",
+ opts = {
+ notification = {
+ override_vim_notify = true,
+ },
+ },
+ },
}