feat(colors): better scss defaults

This commit is contained in:
Iron-E 2021-02-26 18:23:46 -05:00
parent 21ceb84f61
commit be9d13a185
No known key found for this signature in database
GPG Key ID: 19B71B7B7B021D22
1 changed files with 10 additions and 5 deletions

View File

@ -456,13 +456,18 @@ local highlight_groups = {
cssTagName = 'Structure', cssTagName = 'Structure',
cssUnitDecorators = 'Type', cssUnitDecorators = 'Type',
scssAmpersand = 'Special', scssAmpersand = 'Special',
scssAttribute = 'Label', scssAttribute = 'Noise',
scssBoolean = 'Boolean', scssBoolean = 'Boolean',
scssDefault = 'Keyword', scssDefault = 'Keyword',
scssElse = 'PreCondit', scssElse = 'scssIf',
scssMixinName = function(self)
local super = self.cssClassName
return {bg=super.bg, fg=super.fg, style='Italic'}
end,
scssIf = 'PreCondit', scssIf = 'PreCondit',
scssInclude = 'Include', scssInclude = 'Include',
scssSelectorChar = 'Operator', scssSelectorChar = 'Delimiter',
scssDefinition = 'PreProc',
scssSelectorName = 'Identifier', scssSelectorName = 'Identifier',
scssVariable = 'Define', scssVariable = 'Define',
scssVariableAssignment = 'Operator', scssVariableAssignment = 'Operator',
@ -813,8 +818,8 @@ local highlight_groups = {
BufferVisibleMod = {fg=white, bg=gray_darker, style='italic'}, BufferVisibleMod = {fg=white, bg=gray_darker, style='italic'},
BufferVisibleSign = 'BufferVisible', BufferVisibleSign = 'BufferVisible',
BufferVisibleTarget = function(self) BufferVisibleTarget = function(self)
local parent = self.BufferVisibleMod local super = self.BufferVisibleMod
return {fg=parent.fg, bg=parent.bg, style='bold'} return {fg=super.fg, bg=super.bg, style='bold'}
end, end,
--[[ 4.4.10. vim-sandwhich ]] --[[ 4.4.10. vim-sandwhich ]]