From c6747e973bebe2246a95cecc8258273fa8d67ecf Mon Sep 17 00:00:00 2001 From: Taken Date: Mon, 28 Apr 2025 13:45:51 +0200 Subject: [PATCH] Added keybind --- lua/taken/plugins/snacks.lua | 3 +++ 1 file changed, 3 insertions(+) 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, }