Added a keybinding to dismiss noice messages (in case it gets annoying)

This commit is contained in:
Rakshit Sinha 2024-11-28 01:26:34 -08:00
parent a7213e6cac
commit bb3421da6f
1 changed files with 3 additions and 0 deletions

View File

@ -93,3 +93,6 @@ function ExitResizeMode()
vim.api.nvim_del_keymap("n", "q")
print("Exited Resize Mode")
end
-- Noice
vim.keymap.set("n", "<leader>nd", "<cmd>NoiceDismiss<CR>", { desc = "Dismiss Noice Message" })