feat(nvim): add `trouble.nvim` support

This commit is contained in:
Iron-E 2021-07-03 18:17:46 -04:00
parent 66d6011eb5
commit d0b209d269
No known key found for this signature in database
GPG Key ID: 19B71B7B7B021D22
1 changed files with 4 additions and 1 deletions

View File

@ -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