Skip to content

Commit

Permalink
feat(plugins): add rainbow-delimiters.nvim
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Jul 8, 2023
1 parent 1fb9920 commit f13c2e5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ require("astrotheme").setup({
- [nvim-ts-rainbow](https://github.com/p00f/nvim-ts-rainbow)
- [nvim-ts-rainbow2](https://github.com/HiPhish/nvim-ts-rainbow2)
- [nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons)
- [rainbow-delimiters](https://github.com/HiPhish/rainbow-delimiters.nvim)
- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)
- [vimwiki](https://github.com/vimwiki/vimwiki)
- [which-key.nvim](https://github.com/folke/which-key.nvim)
Expand Down
1 change: 1 addition & 0 deletions lua/astrotheme/groups/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ return {
["nvim-ts-rainbow2"] = "nvim-ts-rainbow2",
["nvim-web-devicons"] = "nvim-web-devicons",
["nvim-window-picker"] = "nvim-window-picker",
["rainbow-delimiters.nvim"] = "rainbow-delimiters",
["symbols-outline.nvim"] = "symbols-outline",
["telescope.nvim"] = "telescope",
["vimwiki"] = "vimwiki",
Expand Down
13 changes: 13 additions & 0 deletions lua/astrotheme/groups/plugins/rainbow-delimiters.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
local function callback()
return {
RainbowDelimiterRed = { fg = C.red },
RainbowDelimiterYellow = { fg = C.yellow },
RainbowDelimiterBlue = { fg = C.blue },
RainbowDelimiterOrange = { fg = C.orange },
RainbowDelimiterGreen = { fg = C.green },
RainbowDelimiterViolet = { fg = C.purple },
RainbowDelimiterCyan = { fg = C.cyan },
}
end

return callback

0 comments on commit f13c2e5

Please sign in to comment.