fix line colors
This commit is contained in:
parent
b03c0dd83c
commit
7d91db681c
|
@ -278,16 +278,16 @@ local highlight_groups = {
|
||||||
Float = 'Number',
|
Float = 'Number',
|
||||||
|
|
||||||
--[[ 4.1.2. Identifiers]]
|
--[[ 4.1.2. Identifiers]]
|
||||||
Identifier = {fg=c_primary, style='bold'},
|
Identifier = {fg=c_primary_weak, style='bold'},
|
||||||
Function = {fg=c_primary},
|
Function = {fg=c_primary_strong, style='bold'},
|
||||||
|
|
||||||
--[[ 4.1.3. Syntax]]
|
--[[ 4.1.3. Syntax]]
|
||||||
Statement = {fg=fg},
|
Statement = {fg=c_fg_weak},
|
||||||
Conditional = {fg=fg, style='bold'},
|
Conditional = {fg=c_fg_strong, style='bold'},
|
||||||
Repeat = 'Conditional',
|
Repeat = 'Conditional',
|
||||||
Label = {fg=c_fg_strongest, style='bold'},
|
Label = {fg=c_fg_strongest, style='bold'},
|
||||||
Operator = {fg=fg_weak},
|
Operator = {fg=c_fg, style='bold'},
|
||||||
Keyword = {fg=fg_strong, style='bold'},
|
Keyword = {fg=c_fg_weakest, style='bold'},
|
||||||
Exception = {fg=c_fg_exception, style='bold'},
|
Exception = {fg=c_fg_exception, style='bold'},
|
||||||
Noise = {fg=c_fg_weakest},
|
Noise = {fg=c_fg_weakest},
|
||||||
|
|
||||||
|
@ -412,10 +412,10 @@ local highlight_groups = {
|
||||||
--[[ 4.2.12. Cursor ]]
|
--[[ 4.2.12. Cursor ]]
|
||||||
Cursor = {style='inverse'},
|
Cursor = {style='inverse'},
|
||||||
CursorIM = 'Cursor',
|
CursorIM = 'Cursor',
|
||||||
CursorColumn = {bg=c_fg_strong},
|
CursorColumn = {bg=c_bg_hl},
|
||||||
|
|
||||||
--[[ 4.2.13. Misc ]]
|
--[[ 4.2.13. Misc ]]
|
||||||
Directory = {fg=ice, style='bold'},
|
Directory = {fg=c_primary_weak, style='bold'},
|
||||||
|
|
||||||
--[[ 4.3. Programming Languages
|
--[[ 4.3. Programming Languages
|
||||||
Everything in this section is OPTIONAL. Feel free to remove everything
|
Everything in this section is OPTIONAL. Feel free to remove everything
|
||||||
|
@ -838,10 +838,12 @@ local highlight_groups = {
|
||||||
--[[ 4.4.8. nvim-treesitter ]]
|
--[[ 4.4.8. nvim-treesitter ]]
|
||||||
TSConstBuiltin = 'Constant',
|
TSConstBuiltin = 'Constant',
|
||||||
TSConstructor = 'Typedef',
|
TSConstructor = 'Typedef',
|
||||||
|
TSKeywordFunction = {fg=c_fg_weak, style='bold'},
|
||||||
TSFuncBuiltin = 'Function',
|
TSFuncBuiltin = 'Function',
|
||||||
TSStringEscape = 'Character',
|
TSStringEscape = 'Character',
|
||||||
TSStringRegex = 'SpecialChar',
|
TSStringRegex = 'SpecialChar',
|
||||||
TSURI = 'Tag',
|
TSURI = 'Tag',
|
||||||
|
TSVariable = 'Identifier',
|
||||||
TSVariableBuiltin = 'Identifier',
|
TSVariableBuiltin = 'Identifier',
|
||||||
|
|
||||||
--[[ 4.4.9. barbar.nvim ]]
|
--[[ 4.4.9. barbar.nvim ]]
|
||||||
|
@ -974,20 +976,20 @@ local highlight_groups = {
|
||||||
local terminal_colors = {
|
local terminal_colors = {
|
||||||
[1] = c_bg,
|
[1] = c_bg,
|
||||||
[2] = c_alert_strong,
|
[2] = c_alert_strong,
|
||||||
[3] = green_dark,
|
[3] = c_2_strong,
|
||||||
[4] = orange,
|
[4] = c_alert,
|
||||||
[5] = blue,
|
[5] = c_3,
|
||||||
[6] = magenta_dark,
|
[6] = c_5_strong,
|
||||||
[7] = teal,
|
[7] = c_3_weak,
|
||||||
[8] = c_fg,
|
[8] = c_fg,
|
||||||
[9] = c_fg_strong,
|
[9] = c_fg_strong,
|
||||||
[10] = c_alert,
|
[10] = c_alert,
|
||||||
[11] = green,
|
[11] = c_2,
|
||||||
[12] = yellow,
|
[12] = c_alert_weak,
|
||||||
[13] = turqoise,
|
[13] = c_3,
|
||||||
[14] = purple,
|
[14] = c_5,
|
||||||
[15] = cyan,
|
[15] = c_bg_hl_special_strong,
|
||||||
[16] = c_fg_weak
|
[16] = c_bg
|
||||||
}
|
}
|
||||||
|
|
||||||
--[[ Step 5: Sourcing
|
--[[ Step 5: Sourcing
|
||||||
|
|
Loading…
Reference in New Issue