From d0b209d26951eff4e87634b00e557401efc35789 Mon Sep 17 00:00:00 2001 From: Iron-E Date: Sat, 3 Jul 2021 18:17:46 -0400 Subject: [PATCH] feat(nvim): add `trouble.nvim` support --- colors/highlite.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/colors/highlite.lua b/colors/highlite.lua index dbbee65..cbfd9fc 100644 --- a/colors/highlite.lua +++ b/colors/highlite.lua @@ -315,7 +315,7 @@ local highlight_groups = { --[[ 4.2.3. Conditional Line Highlighting]] Conceal = 'NonText', CursorLine = {bg=gray_dark}, - CursorLineNr = function(self) return {fg=pink, bg=self.CursorLine.bg} end, + CursorLineNr = function(self) return {fg=pink, bg=self.LineNr.bg} end, debugBreakpoint = 'ErrorMsg', debugPC = 'ColorColumn', LineNr = {fg=gray}, @@ -852,6 +852,9 @@ local highlight_groups = { --[[ 4.4.13. indent-blankline.nvim ]] IndentBlanklineChar = function(self) return vim.tbl_extend('force', self.Whitespace, {style='nocombine'}) end, IndentBlanklineSpaceChar = 'IndentBlanklineChar', + + --[[ 4.4.14. trouble.nvim ]] + TroubleCount = function(self) return vim.tbl_extend('force', self.Number, {style='underline'}) end, } --[[ Step 5: Terminal Colors