-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Noice <> nvim-notify settings #38
Comments
Please upload your |
use({
"rcarriga/nvim-notify",
config = function()
local notify = require("notify")
notify.setup({
render = "minimal",
stages = "static",
timeout = 1000,
})
end,
}) |
I know what's happenig here. When we're in blovking mode, we use a separate notify instance that renders without animations. Otherwise, you would not see the notificaiton. Will fix it so that for that instance we use the user settings as well. |
Actually, everything should already work as expected. Are you still settting You shouldn't do that, since that would prevent Noice from picking up Notifications |
I think |
Don't seem to be able to reproduce anymore 👍 |
Describe the bug
When I set nvim-notify settings through
require('notify').setup({...})
the vim.notify messages don't appear in:Noice
I use packer, in case that's relevant
Which version of Neovim are you using?
Nightly
Expected Behavior
There is a way to configure nvim-notify settings by calling notify.setup or by passing it through noice settings
The text was updated successfully, but these errors were encountered: