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

15 lines
279 B
Lua

---@type LazyPluginSpec[]
return {
{
"rcarriga/nvim-notify",
config = function()
local notify = require("notify")
notify.setup({
timeout = 1000,
render = "compact",
stages = "fade",
})
vim.notify = notify
end,
},
}