Skip to content

Commit

Permalink
fix: updated default colors to use 0.6 diagnostic highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
folke committed Dec 4, 2021
1 parent 9983edc commit 6570fd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/todo-comments/config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ local defaults = {
-- list of named colors where we try to extract the guifg from the
-- list of hilight groups or use the hex color if hl not found as a fallback
colors = {
error = { "LspDiagnosticsDefaultError", "ErrorMsg", "#DC2626" },
warning = { "LspDiagnosticsDefaultWarning", "WarningMsg", "#FBBF24" },
info = { "LspDiagnosticsDefaultInformation", "#2563EB" },
hint = { "LspDiagnosticsDefaultHint", "#10B981" },
error = { "DiagnosticError", "ErrorMsg", "#DC2626" },
warning = { "DiagnosticWarn", "WarningMsg", "#FBBF24" },
info = { "DiagnosticInfo", "#2563EB" },
hint = { "DiagnosticHint", "#10B981" },
default = { "Identifier", "#7C3AED" },
},
search = {
Expand Down

0 comments on commit 6570fd2

Please sign in to comment.