diff --git a/lua/taken/plugins/snacks.lua b/lua/taken/plugins/snacks.lua index 86450de..4419e6a 100644 --- a/lua/taken/plugins/snacks.lua +++ b/lua/taken/plugins/snacks.lua @@ -12,5 +12,8 @@ return { vim.api.nvim_create_user_command("NotifyHistory", function() Snacks.notifier.show_history() end, { desc = "Show notification history" }) + vim.keymap.set("n", "oh", function() + snacks.notifier.show_history() + end, { desc = "Show notification history" }) end, }