Files
dotfiles/sources/nvim/lua/settings/lazy/plugins/nvim-notify.lua
T
2025-11-08 20:46:24 +01:00

24 lines
451 B
Lua

return {
"rcarriga/nvim-notify",
event = "VeryLazy",
config = function()
local notify = require("notify")
vim.notify = notify
require("notify.config").setup({
enabled = false,
stages = "fade_in_slide_out",
timeout = 5000,
background_colour = "#1e222a",
icons = {
ERROR = "",
WARN = "",
INFO = "",
DEBUG = "",
TRACE = "✎",
},
})
end,
}