mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 20:41:04 +00:00
13 lines
236 B
Lua
13 lines
236 B
Lua
-- Add options for notify to avoid transparent background errors
|
|
|
|
return {
|
|
{
|
|
"rcarriga/nvim-notify",
|
|
opts = {
|
|
fps = 10,
|
|
background_colour = "#000000",
|
|
stages = "fade",
|
|
render = "compact",
|
|
},
|
|
},
|
|
}
|