rcarriga/nvim-notify

Notification hides the text behind it

shauryagoel opened this issue ยท 2 comments

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 ๐Ÿ˜„

My workaround for this was to move notifications to the bottom, following #127.

In my config (using lazy.nvim) it looked like gibfahn/dot@f1922ca :

  {
    "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.
    },
  },