Make highlight groups more unique by default

This commit is contained in:
Iron_E 2020-07-15 15:36:29 -04:00
parent 88b7a34bb3
commit a77c4c8b66
No known key found for this signature in database
GPG Key ID: B0B37DE7EDC2335F
1 changed files with 25 additions and 23 deletions

View File

@ -204,18 +204,18 @@ local highlight_groups = {
--[[ 4.1.3. Syntax]] --[[ 4.1.3. Syntax]]
Statement = {bg=NONE, fg=ice, style=NONE }, Statement = {bg=NONE, fg=ice, style=NONE },
Conditional = {bg=NONE, fg=ice, style='italic'}, Conditional = {bg=NONE, fg=ice, style='italic'},
Repeat = {link='Keyword' }, Repeat = {bg=NONE, fg=turqoise, style='bold' },
Label = {bg=NONE, fg=pink, style='italic'}, Label = {bg=NONE, fg=pink, style='italic'},
Operator = {bg=NONE, fg=green_dark, style=NONE }, Operator = {bg=NONE, fg=green_dark, style=NONE },
Keyword = {bg=NONE, fg=turqoise, style='bold' }, Keyword = {bg=NONE, fg=teal, style=NONE },
Exception = {bg=NONE, fg=red_light, style='bold' }, Exception = {bg=NONE, fg=red_light, style='bold' },
--[[ 4.1.4. Metatextual Information]] --[[ 4.1.4. Metatextual Information]]
PreProc = {bg=NONE, fg=tan, style=NONE }, PreProc = {bg=NONE, fg=tan, style=NONE },
Include = {bg=NONE, fg=green_light, style='nocombine'}, Include = {bg=NONE, fg=green_light, style='nocombine'},
Define = {bg=NONE, fg=blue, style='nocombine'}, Define = {bg=NONE, fg=blue, style='nocombine'},
Macro = {link='Define' }, Macro = {bg=NONE, fg=blue, style='italic' },
PreCondit = {bg=NONE, fg=teal, style='nocombine'}, PreCondit = {bg=NONE, fg=tan, style='italic' },
--[[ 4.1.5. Semantics]] --[[ 4.1.5. Semantics]]
Type = {bg=NONE, fg=cyan, style=NONE }, Type = {bg=NONE, fg=cyan, style=NONE },
@ -360,14 +360,16 @@ local highlight_groups = {
csContextualStatement = {link='Conditional'}, csContextualStatement = {link='Conditional'},
csEndColon = {link='Delimiter'}, csEndColon = {link='Delimiter'},
csLogicSymbols = {link='Operator'}, csLogicSymbols = {link='Operator'},
csModifier = {link='PreProc'}, csModifier = {link='Keyword'},
csNew = {link='Operator'}, csNew = {link='Operator'},
csNewType = {link='Type'}, csNewType = {link='Type'},
csParens = {link='Delimiter'}, csParens = {link='Delimiter'},
csPreCondit = {link='PreProc'},
csRepeat = {link='Repeat'}, csRepeat = {link='Repeat'},
csStorage = {link='StorageClass'}, csStorage = {link='StorageClass'},
csUnspecifiedStatement = {link='Statement'}, csUnspecifiedStatement = {link='Statement'},
csXmlTag = {link='Tag'}, csXmlTag = {link='Define'},
csXmlTagName = {link='Define'},
--[[ 4.3.4. CSS ]] --[[ 4.3.4. CSS ]]
cssProp = {link='Keyword'}, cssProp = {link='Keyword'},