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:
parent
7761018507
commit
dc465bb39a
1 changed files with 4 additions and 0 deletions
|
@ -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" },
|
||||
|
|
Loading…
Reference in a new issue