+ },
+ { "folke/snacks.nvim",
+ opts = {
+ notifier = { enabled = true },
+ },
+ -- stylua: ignore
+ keys = {
+ -- TODO: review after picking picker (ha)
+ { "<leader>n", function()
+ if Snacks.config.picker and Snacks.config.picker.enabled then
+ Snacks.picker.notifications()
+ else
+ Snacks.notifier.show_history()
+ end
+ end, desc = "Notification History" },
+ { "<leader>un", function() Snacks.notifier.hide() end, desc = "Dismiss All Notifications" },
+ },