nvim/plugin-confs/nvim-notify.lua

18 lines
349 B
Lua
Raw Permalink Normal View History

2023-08-15 23:31:31 -07:00
require("notify").setup({
2023-08-17 01:12:44 -07:00
background_colour = "#000000",
2023-08-15 23:31:31 -07:00
fps = 144,
icons = {
DEBUG = "",
ERROR = "",
INFO = "",
TRACE = "",
WARN = ""
},
level = 2,
minimum_width = 50,
render = "default",
stages = "fade_in_slide_out",
timeout = 5000,
top_down = true
})