From ca2586c1530a58ff654934c26ef7740c30b6c39d Mon Sep 17 00:00:00 2001 From: Binciu Viorel Date: Sun, 26 May 2024 11:39:47 +0300 Subject: [PATCH] feat: Added notify --- lua/plugins/notify.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/plugins/notify.lua diff --git a/lua/plugins/notify.lua b/lua/plugins/notify.lua new file mode 100644 index 0000000..2066363 --- /dev/null +++ b/lua/plugins/notify.lua @@ -0,0 +1,13 @@ +-- Add options for notify to avoid transparent background errors + +return { + { + "rcarriga/nvim-notify", + opts = { + fps = 10, + background_colour = "#000000", + stages = "fade", + render = "compact", + }, + }, +}