nvim-notify
nvim-notify copied to clipboard
Notification hides the text behind it
Is there a way to hide the notification or make it small dynamically when there is text behind it? On small windows, the text is hidden by the notification. I know that we can change the size of the notification, but, is there any other better way?
Or have a command to clear out notifications :smile:
My workaround for this was to move notifications to the bottom, following https://github.com/rcarriga/nvim-notify/pull/127.
In my config (using lazy.nvim) it looked like https://github.com/gibfahn/dot/commit/f1922ca89e8d9c85be8eeb16979ef4a18eb1c104 :
{
"rcarriga/nvim-notify", -- Notification plugin used by noice.
event = "VeryLazy",
opts = {
top_down = false, -- Notifications start at the bottom to stay out of your way.
},
},