Skip to content

Commit

Permalink
feat(integrations): add NormalNvim
Browse files Browse the repository at this point in the history
close #580
  • Loading branch information
nullchilly committed Sep 4, 2023
1 parent 81096ca commit 0e3c128
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
14 changes: 14 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 -->

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

```lua
NormalNvim = false
```

</td>
</tr>
<!-- NormalNvim -->

<!-- notifier.nvim -->
</tr>
<tr>
Expand Down
15 changes: 15 additions & 0 deletions lua/catppuccin/groups/integrations/NormalNvim.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
local M = {}

function M.get()
return {
MarkdownTask = { fg = C.teal, style = { "bold" } },
MarkdownTodo = { fg = C.yellow, style = { "bold" } },
MarkdownNote = { fg = C.red, style = { "bold" } },
MarkdownSee = { fg = C.blue, style = { "bold" } },
MarkdownCheck = { fg = C.green, style = { "bold" } },
MarkdownURL = { fg = C.lavender, style = { "bold" } },
MarkdownExample = { fg = C.mauve, style = { "bold" } },
}
end

return M

0 comments on commit 0e3c128

Please sign in to comment.