feat(nvim): set nvim-notify as the default vim.notify handler

This commit is contained in:
Kyren223
2024-08-05 22:59:35 +03:00
parent 7d440a4db8
commit 53a2d037dc

View File

@@ -10,10 +10,13 @@ return {
desc = '[N]otify [D]ismiss All',
},
},
opts = {
fps = 60,
render = 'default',
timeout = 500,
topDown = true,
},
opts = function()
vim.notify = require('notify')
return {
fps = 60,
render = 'default',
timeout = 500,
topDown = true,
}
end,
}