diff --git a/README.md b/README.md index 06870df..5261737 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/lua/nightcity/groups.lua b/lua/nightcity/groups.lua index 4658090..8f6fdff 100644 --- a/lua/nightcity/groups.lua +++ b/lua/nightcity/groups.lua @@ -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 }