From a57f1ddae0959d1eda1ec22e6b5adb3206102e00 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Mon, 26 Aug 2024 19:18:54 +0200 Subject: [PATCH] nvim: ui: adding j-hui/fidget.nvim --- nvim/lua/user/plugins/ui.lua | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/nvim/lua/user/plugins/ui.lua b/nvim/lua/user/plugins/ui.lua index cf60d81..41ed1f4 100644 --- a/nvim/lua/user/plugins/ui.lua +++ b/nvim/lua/user/plugins/ui.lua @@ -1,6 +1,24 @@ local icons = require("user.icons") return { + -- Nicer notifications + { + "j-hui/fidget.nvim", + opts = { + notification = { + window = { + normal_hl = "Pmenu", + winblend = 5, + border = { " " } + } + }, + progress = { + display = { + done_ttl = 2, + } + } + } + }, -- File explorer { "nvim-neo-tree/neo-tree.nvim",