Added keybind

This commit is contained in:
2025-04-28 13:45:51 +02:00
parent 5cb993e802
commit c6747e973b

View File

@@ -12,5 +12,8 @@ return {
vim.api.nvim_create_user_command("NotifyHistory", function() vim.api.nvim_create_user_command("NotifyHistory", function()
Snacks.notifier.show_history() Snacks.notifier.show_history()
end, { desc = "Show notification history" }) end, { desc = "Show notification history" })
vim.keymap.set("n", "<leader>oh", function()
snacks.notifier.show_history()
end, { desc = "Show notification history" })
end, end,
} }