update
This commit is contained in:
parent
17e8a2cdaf
commit
0209283a8f
|
@ -391,18 +391,22 @@ local highlight_groups = {
|
|||
LspDiagnosticsDefaultError = 'Error',
|
||||
LspDiagnosticsFloatingError = 'ErrorMsg',
|
||||
LspDiagnosticsSignError = 'LspDiagnosticsFloatingError',
|
||||
LspDiagnosticsLineNrError = 'ErrorMsg',
|
||||
|
||||
LspDiagnosticsDefaultWarning = 'Warning',
|
||||
LspDiagnosticsFloatingWarning = 'WarningMsg',
|
||||
LspDiagnosticsSignWarning = 'LspDiagnosticsFloatingWarning',
|
||||
LspDiagnosticsLineNrWarning = 'WarningMsg',
|
||||
|
||||
LspDiagnosticsDefaultHint = 'Hint',
|
||||
LspDiagnosticsFloatingHint = 'HintMsg',
|
||||
LspDiagnosticsSignHint = 'LspDiagnosticsFloatingHint',
|
||||
LspDiagnosticsLineNrHint = 'HintMsg',
|
||||
|
||||
LspDiagnosticsDefaultInformation = 'Info',
|
||||
LspDiagnosticsFloatingInformation = 'InfoMsg',
|
||||
LspDiagnosticsSignInformation = 'LspDiagnosticsFloatingInformation',
|
||||
LspDiagnosticsLineNrInformation = 'InfoMsg',
|
||||
|
||||
LspDiagnosticsUnderlineError = 'CocErrorHighlight',
|
||||
LspDiagnosticsUnderlineHint = 'CocHintHighlight',
|
||||
|
@ -888,7 +892,7 @@ local highlight_groups = {
|
|||
BufferInactiveTarget = 'BufferVisibleTarget',
|
||||
|
||||
BufferTabpages = {fg=BG, bg=FG, style='bold'},
|
||||
BufferTabpageFill = 'TabLineFill',
|
||||
-- BufferTabpageFill = 'TabLineFill',
|
||||
|
||||
BufferVisible = 'TabLine',
|
||||
BufferVisibleIndex = function(self) return {fg=self.InfoMsg.fg, bg=self.BufferVisible.bg} end,
|
||||
|
@ -914,7 +918,9 @@ local highlight_groups = {
|
|||
TargetWord = 'Title',
|
||||
|
||||
--[[ 4.4.13. indent-blankline.nvim ]]
|
||||
IndentBlanklineChar = function(self) return vim.tbl_extend('force', self.Whitespace, {style='nocombine'}) end,
|
||||
-- IndentBlanklineChar = function(self) return vim.tbl_extend('force', (fg=c_bg_ui) {style='nocombine'}) end,
|
||||
IndentBlanklineChar = {fg=c_bg_hl_strong, style='nocombine'},
|
||||
IndentBlanklineContextChar = {fg=c_fg, style='nocombine'},
|
||||
IndentBlanklineSpaceChar = 'IndentBlanklineChar',
|
||||
|
||||
--[[ 4.4.14. trouble.nvim ]]
|
||||
|
@ -964,7 +970,6 @@ local highlight_groups = {
|
|||
TabLineItemSel = {fg=c_fg_strong, bg=c_bg_ui, style={'italic', 'bold'}},
|
||||
TabLineNum = {fg=c_fg_weak, bg=c_bg_ui},
|
||||
TabLineNumSel = {fg=c_fg_weak, bg=c_bg_ui}
|
||||
|
||||
}
|
||||
|
||||
--[[ Step 5: Terminal Colors
|
||||
|
|
Loading…
Reference in New Issue