Skip to content

Commit

Permalink
feat(integrations): add notifier.nvim
Browse files Browse the repository at this point in the history
close #574
  • Loading branch information
nullchilly committed Aug 25, 2023
1 parent 5b44baa commit d029098
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -878,6 +878,20 @@ noice = false
</tr>
<!-- noice.nvim -->

<!-- notifier.nvim -->
</tr>
<tr>
<td> <a href="https://github.com/vigoux/notifier.nvim">notifier.nvim</a> </td>
<td>

```lua
notifier = false
```

</td>
</tr>
<!-- notifier.nvim -->

<!-- nvim-cmp -->
</tr>
<tr>
Expand Down Expand Up @@ -1096,6 +1110,7 @@ ts_rainbow = true
```lua
window_picker = false
```
<!-- nvim-window-picker -->

<!-- octo.nvim -->
</tr>
Expand Down
11 changes: 11 additions & 0 deletions lua/catppuccin/groups/integrations/notifier.lua
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d029098

Please sign in to comment.