nvim: Add mapping to show notification history

Added the `<leader>sh` (show history) mapping to display the recent
history of messages sent to notify. Uses fidget.nvim to accomplish this.
This commit is contained in:
Marty Oehme 2024-06-14 22:08:12 +02:00
parent 7761018507
commit dc465bb39a
Signed by: Marty
GPG key ID: EDBF2ED917B2EF6A

View file

@ -58,6 +58,10 @@ return {
},
},
event = { "VeryLazy" },
cmd = {"Fidget"},
keys = {
{ "<leader>sh", "<cmd>Fidget history<cr>", { silent = true, desc = "show notification history" } },
}
},
-- make all vim.ui interfaces prettyy
{ "stevearc/dressing.nvim", config = true, event = "VeryLazy" },