13 lines
262 B
Lua
13 lines
262 B
Lua
return {
|
|
"rcarriga/nvim-notify",
|
|
config = function()
|
|
require("notify").setup({
|
|
stages = "fade_in_slide_out",
|
|
background_colour = "FloatShadow",
|
|
timeout = 2750,
|
|
render = "compact",
|
|
-- opacity = 75,
|
|
})
|
|
vim.notify = require("notify")
|
|
end,
|
|
}
|