dotfiles/nvim-old/lua/thomas/plugins/nvim-notify.lua

18 lines
261 B
Lua
Raw Permalink Normal View History

2024-02-23 14:24:43 +00:00
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 = "",
},
})