Files
neovim-config/lua/taken/plugins/notify.lua
Taken 9556024c93 Added types
Signed-off-by: Taken <taken@mairimashita.org>
2024-03-17 16:34:11 +01:00

16 lines
282 B
Lua

--- @type LazyPluginSpec
return {
"rcarriga/nvim-notify",
config = function()
local notify = require("notify")
notify.setup({
fps = 60,
stages = "slide",
timeout = 2500,
})
vim.notify = notify
end,
}