dotfiles/home/apps/neovim/lua/plugins/notify.lua

16 lines
279 B
Lua
Raw Normal View History

---@type LazyPluginSpec[]
return {
{
"rcarriga/nvim-notify",
config = function()
local notify = require("notify")
notify.setup({
2023-06-17 22:09:36 +02:00
timeout = 1000,
render = "compact",
stages = "fade",
})
vim.notify = notify
end,
},
}