Fixed enum use vs magic string

This commit is contained in:
Dave Greene 2024-03-29 21:59:45 -04:00 committed by GitHub
commit 905be45da6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -775,8 +775,8 @@ local function set_highlights()
CopilotSuggestion = { fg = palette.muted, italic = styles.italic },
-- nvim-treesitter/nvim-treesitter-context
TreesitterContext = { bg = "overlay" },
TreesitterContextLineNumber = { fg = "rose", bg = "overlay" }
TreesitterContext = { bg = palette.overlay },
TreesitterContextLineNumber = { fg = palette.rose, bg = palette.overlay }
}
local transparency_highlights = {
DiagnosticVirtualTextError = { fg = groups.error },