Skip to content

Commit

Permalink
Restore red color for errors
Browse files Browse the repository at this point in the history
  • Loading branch information
app committed Oct 22, 2021
1 parent 8463b9d commit b2c8112
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lua/solarized/solarized-flat/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ function M.load_syntax(colors)
syntax['TSTypeBuiltin'] = syntax['Type']
-- syntax['TSEmphasis'] = syntax['']

syntax['LspDiagnosticsDefaultError'] = {fg=colors.orange,guisp=colors.orange,style='none'}
syntax['LspDiagnosticsDefaultError'] = {fg=colors.red,guisp=colors.red,style='none'}
syntax['LspDiagnosticsDefaultWarning'] = {fg=colors.yellow,guisp=colors.yellow,style='none'}
syntax['LspDiagnosticsDefaultInformation'] = {fg=colors.cyan,guisp=colors.cyan,style='none'}
syntax['LspDiagnosticsDefaultHint'] = {fg=colors.green,guisp=colors.green,style='none'}
Expand Down
2 changes: 1 addition & 1 deletion lua/solarized/solarized-high/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ function M.load_syntax(colors)
syntax['TSTypeBuiltin'] = syntax['Type']
-- syntax['TSEmphasis'] = syntax['']

syntax['LspDiagnosticsDefaultError'] = {fg=colors.orange,guisp=colors.orange,style='none'}
syntax['LspDiagnosticsDefaultError'] = {fg=colors.red,guisp=colors.red,style='none'}
syntax['LspDiagnosticsDefaultWarning'] = {fg=colors.yellow,guisp=colors.yellow,style='none'}
syntax['LspDiagnosticsDefaultInformation'] = {fg=colors.cyan,guisp=colors.cyan,style='none'}
syntax['LspDiagnosticsDefaultHint'] = {fg=colors.green,guisp=colors.green,style='none'}
Expand Down
2 changes: 1 addition & 1 deletion lua/solarized/solarized-low/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ function M.load_syntax(colors)
syntax['pandocLineBreak'] = syntax['pandocEscapePair']
syntax['pandocMetadataTitle'] = syntax['pandocMetadata']

syntax['LspDiagnosticsDefaultError'] = {fg=colors.orange,guisp=colors.orange,style='none'}
syntax['LspDiagnosticsDefaultError'] = {fg=colors.red,guisp=colors.red,style='none'}
syntax['LspDiagnosticsDefaultWarning'] = {fg=colors.yellow,guisp=colors.yellow,style='none'}
syntax['LspDiagnosticsDefaultInformation'] = {fg=colors.cyan,guisp=colors.cyan,style='none'}
syntax['LspDiagnosticsDefaultHint'] = {fg=colors.green,guisp=colors.green,style='none'}
Expand Down
2 changes: 1 addition & 1 deletion lua/solarized/solarized-normal/highlights.lua
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ function M.load_syntax(colors)
syntax['TSTypeBuiltin'] = syntax['Type']
-- syntax['TSEmphasis'] = syntax['']

syntax['LspDiagnosticsDefaultError'] = {fg=colors.orange,guisp=colors.orange,style='none'}
syntax['LspDiagnosticsDefaultError'] = {fg=colors.red,guisp=colors.red,style='none'}
syntax['LspDiagnosticsDefaultWarning'] = {fg=colors.yellow,guisp=colors.yellow,style='none'}
syntax['LspDiagnosticsDefaultInformation'] = {fg=colors.cyan,guisp=colors.cyan,style='none'}
syntax['LspDiagnosticsDefaultHint'] = {fg=colors.green,guisp=colors.green,style='none'}
Expand Down

0 comments on commit b2c8112

Please sign in to comment.