Files
neovim-config/lua/taken/plugins/notify.lua
2025-08-26 11:46:42 +02:00

18 lines
366 B
Lua

--- @type LazyPluginSpec
return {
"rcarriga/nvim-notify",
enabled = false,
config = function()
local notify = require("notify")
notify.setup({
fps = 60,
stages = "slide",
timeout = 2500,
})
---@diagnostic disable-next-line: assign-type-mismatch
vim.notify = notify
end,
}