Skip to content

Commit

Permalink
fix: diagnostics colors
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoulloao committed Jul 26, 2024
1 parent efe8bad commit b41881a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lua/neofusion/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ local function get_groups()
NeofusionPurple = { fg = colors.purple },
NeofusionPurpleBold = { fg = colors.purple, bold = config.bold },
NeofusionAqua = { fg = colors.aqua },
NeofusionNeutralAqua = { fg = colors.neutral_aqua },
NeofusionAquaBold = { fg = colors.aqua, bold = config.bold },
NeofusionOrange = { fg = colors.orange },
NeofusionOrangeBold = { fg = colors.orange, bold = config.bold },
Expand Down Expand Up @@ -241,7 +242,7 @@ local function get_groups()
Exception = { link = "NeofusionRed" },
Operator = { fg = colors.orange, italic = config.italic.operators },
Keyword = { link = "NeofusionRed" },
Identifier = { link = "NeofusionBlue" },
Identifier = { link = "NeofusionNeutralAqua" },
Function = { link = "NeofusionGreenBold" },
PreProc = { link = "NeofusionAqua" },
Include = { link = "NeofusionAqua" },
Expand Down Expand Up @@ -279,7 +280,7 @@ local function get_groups()
DiagnosticWarn = { link = "NeofusionYellow" },
DiagnosticSignWarn = { link = "NeofusionYellowSign" },
DiagnosticUnderlineWarn = { link = "NeofusionYellowUnderline" },
DiagnosticInfo = { link = "NeofusionBlue" },
DiagnosticInfo = { link = "NeofusionGreen" },
DiagnosticSignInfo = { link = "NeofusionBlueSign" },
DiagnosticUnderlineInfo = { link = "NeofusionBlueUnderline" },
DiagnosticHint = { link = "NeofusionAqua" },
Expand Down

0 comments on commit b41881a

Please sign in to comment.