Skip to content

Commit

Permalink
fix EndOfBuffer
Browse files Browse the repository at this point in the history
  • Loading branch information
ellisonleao committed May 18, 2024
1 parent 4f8e2dc commit e41b123
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/gruvbox.lua
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@ local function get_groups()
SpellRare = { link = "GruvboxPurpleUnderline" },
Whitespace = { fg = colors.bg2 },
Delimiter = { link = "GruvboxOrange" },
EndOfBuffer = { link = "NonText" },
DiagnosticError = { link = "GruvboxRed" },
DiagnosticSignError = { link = "GruvboxRedSign" },
DiagnosticUnderlineError = { link = "GruvboxRedUnderline" },
Expand Down Expand Up @@ -919,7 +920,7 @@ local function get_groups()
DapUIBreakpointsPath = { link = "GruvboxBlue" },
DapUICurrentFrameName = { link = "GruvboxPurple" },
DapUIDecoration = { link = "GruvboxPurple" },
DapUIEndofBuffer = { link = "GruvboxBg2" },
DapUIEndofBuffer = { link = "EndOfBuffer" },
DapUIFloatBorder = { link = "GruvboxAqua" },
DapUILineNumber = { link = "GruvboxYellow" },
DapUIModifiedValue = { link = "GruvboxRed" },
Expand Down Expand Up @@ -1080,7 +1081,6 @@ local function get_groups()
["@lsp.type.type"] = { link = "@type" },
["@lsp.type.typeParameter"] = { link = "@type.definition" },
["@lsp.type.variable"] = { link = "@variable" },
EndOfBuffer = { link = "GruvboxBg0" },
}

for group, hl in pairs(config.overrides) do
Expand Down

0 comments on commit e41b123

Please sign in to comment.