dotfiles/nvim/lua/thomas/plugins/nvim-notify.lua
2024-02-23 14:24:43 +00:00

17 lines
261 B
Lua

local notify_setup, notify = pcall(require, "notify")
if not notify_setup then
return
end
notify.setup({
render = "wrapped-compact",
stages = "fade",
icons = {
INFO = "󰙎",
WARN = "",
ERROR = "",
TRACE = "󰏫 ",
DEBUG = "",
},
})