nvim/lua/plugins/notify.lua
Evie Litherland-Smith 1604376d4b Only blend floating windows when using neovide
Set notify background based on catppuccin colourscheme
2023-05-16 13:42:12 +01:00

11 lines
279 B
Lua

return {
"rcarriga/nvim-notify",
dependencies = { "catppuccin/nvim" },
config = true,
opts = {
background_colour = require("catppuccin.palettes").get_palette("macchiato").base,
fps = 60,
render = "default", -- "minimal", "simple"
},
}