Skip to content

Commit

Permalink
feat(groups): Add support for indent-blankline
Browse files Browse the repository at this point in the history
  • Loading branch information
cryptomilk committed Jan 11, 2024
1 parent c416e7e commit 43b9a0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ and [Tokyonight](https://github.com/folke/tokyonight.nvim/).
- [Cmp](https://github.com/hrsh7th/nvim-cmp)
- [Git Signs](https://github.com/lewis6991/gitsigns.nvim)
- [Flash](https://github.com/folke/flash.nvim)
- [Indent-Blankline](https://github.com/lukas-reineke/indent-blankline.nvim)
- [LSP Diagnostics](https://neovim.io/doc/user/lsp.html)
- [LSP Saga](https://github.com/nvimdev/lspsaga.nvim)
- [LSP Signature](https://github.com/ray-x/lsp_signature.nvim)
Expand Down
5 changes: 5 additions & 0 deletions lua/nightcity/groups.lua
Original file line number Diff line number Diff line change
Expand Up @@ -919,6 +919,11 @@ H.get_color_groups = function(config, style)
groups.LspSignatureActiveParameter = { bold = true }
end

if H.has_integration(config, 'lukas-reineke/indent-blankline.nvim') then
groups.IblIndent = { fg = c.xgray7, nocombine = true }
groups.IblScope = { fg = c.magenta, nocombine = true }
end

if H.has_integration(config, 'HiPhish/nvim-ts-rainbow2') then
groups.TSRainbowRed = { fg = c.red }
groups.TSRainbowOrange = { fg = c.orange }
Expand Down

0 comments on commit 43b9a0f

Please sign in to comment.