21 lines
327 B
Lua
21 lines
327 B
Lua
|
return {
|
||
|
"rcarriga/nvim-notify",
|
||
|
opts = {
|
||
|
background_colour = "#000000",
|
||
|
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,
|
||
|
},
|
||
|
}
|