Skip to content

Commit

Permalink
fix: remove unneeded diagnostic highlights (#62)
Browse files Browse the repository at this point in the history
The DiagnosticFloat* and DiagnosticSign* groups link to the Diagnostic
group by default, saving us the need to define them separately.
  • Loading branch information
adrian5 authored Nov 26, 2024
1 parent 2af8b20 commit 8c56cf2
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions lua/nightfall/groups/integrations/lspconfig.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,20 +91,6 @@ function M.get(colors)
DiagnosticUnderlineHint = { sp = colors.violet, style = { undercurl = true } },
DiagnosticUnderlineOk = { sp = colors.green, style = { undercurl = true } },

-- Diagnostic Floating Colors
DiagnosticFloatingError = { fg = colors.red },
DiagnosticFloatingWarn = { fg = colors.pale_yellow },
DiagnosticFloatingInfo = { fg = colors.light_cyan },
DiagnosticFloatingHint = { fg = colors.violet },
DiagnosticFloatingOk = { fg = colors.green },

-- Diagnostic Sign Colors
DiagnosticSignError = { fg = colors.red },
DiagnosticSignWarn = { fg = colors.pale_yellow },
DiagnosticSignInfo = { fg = colors.light_cyan },
DiagnosticSignHint = { fg = colors.violet },
DiagnosticSignOk = { fg = colors.green },

-- LSP Reference Colors
LspReferenceText = { bg = colors.deep_navy },
LspReferenceRead = { bg = colors.deep_navy },
Expand Down

0 comments on commit 8c56cf2

Please sign in to comment.