From 702687276a647241159703ec9a23f0da75d7fd59 Mon Sep 17 00:00:00 2001 From: Job79 Date: Fri, 1 Nov 2024 20:37:52 +0100 Subject: [PATCH] feat: only show important notifications --- config/nvim/plugins/notifications.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 config/nvim/plugins/notifications.lua diff --git a/config/nvim/plugins/notifications.lua b/config/nvim/plugins/notifications.lua new file mode 100644 index 0000000..eebce43 --- /dev/null +++ b/config/nvim/plugins/notifications.lua @@ -0,0 +1,10 @@ +-- Only show important notifications. +return { + { + "rcarriga/nvim-notify", + opts = { + level = 3, + render = "minimal", + }, + }, +}