.dotfiles/configs/nvim/lua/configs/notify.lua
2022-04-23 03:41:04 +02:00

18 lines
371 B
Lua

local notify = require("notify")
notify.setup(
{
stages = "fade_in_slide_out",
max_width = 50,
render = "minimal",
background_colour = "#000000",
icons = {
ERROR = "",
WARN = "",
INFO = "",
DEBUG = "",
TRACE = ""
}
}
)
vim.notify = notify;