diff --git a/README.md b/README.md index e5bb3e70..ec8266e6 100644 --- a/README.md +++ b/README.md @@ -878,6 +878,20 @@ noice = false + + + + notifier.nvim + + +```lua +notifier = false +``` + + + + + @@ -1096,6 +1110,7 @@ ts_rainbow = true ```lua window_picker = false ``` + diff --git a/lua/catppuccin/groups/integrations/notifier.lua b/lua/catppuccin/groups/integrations/notifier.lua new file mode 100644 index 00000000..12ecfe40 --- /dev/null +++ b/lua/catppuccin/groups/integrations/notifier.lua @@ -0,0 +1,11 @@ +local M = {} + +function M.get() + return { + NotifierIcon = { fg = C.mauve }, + NotifierContent = { fg = C.overlay2, blend = 0, style = { "italic" } }, + NotifierContentDim = { fg = C.overlay1, blend = 0, style = { "italic" } }, + } +end + +return M