Skip to content

Commit

Permalink
test setting nocombine on highlight groups
Browse files Browse the repository at this point in the history
  • Loading branch information
CKolkey committed Jul 17, 2023
1 parent f5f560a commit 62a2ff4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions lua/neogit/lib/hl.lua
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,13 @@ function M.setup()
NeogitGraphBoldPurple = { fg = palette.purple, bold = true },
NeogitGraphBoldGray = { fg = palette.grey, bold = true },
NeogitHunkHeader = { fg = palette.bg0, bg = palette.grey, bold = true },
NeogitHunkHeaderHighlight = { fg = palette.bg0, bg = palette.md_purple, bold = true },
NeogitDiffContext = { bg = palette.bg1 },
NeogitDiffContextHighlight = { bg = palette.bg2 },
NeogitHunkHeaderHighlight = { fg = palette.bg0, bg = palette.md_purple, bold = true, nocombine = false },
NeogitDiffContext = { bg = palette.bg1, nocombine = false },
NeogitDiffContextHighlight = { bg = palette.bg2, nocombine = false },
NeogitDiffAdd = { bg = palette.line_green, fg = palette.bg_green },
NeogitDiffAddHighlight = { bg = palette.line_green, fg = palette.green },
NeogitDiffAddHighlight = { bg = palette.line_green, fg = palette.green, nocombine = false },
NeogitDiffDelete = { bg = palette.line_red, fg = palette.bg_red },
NeogitDiffDeleteHighlight = { bg = palette.line_red, fg = palette.red },
NeogitDiffDeleteHighlight = { bg = palette.line_red, fg = palette.red, nocombine = false },
NeogitPopupSectionTitle = { link = "Function" },
NeogitPopupBranchName = { link = "String" },
NeogitPopupBold = { bold = true },
Expand All @@ -142,7 +142,7 @@ function M.setup()
NeogitFilePath = { fg = palette.blue, italic = true },
NeogitCommitViewHeader = { bg = palette.bg_cyan, fg = palette.bg0 },
NeogitDiffHeader = { bg = palette.bg3, fg = palette.blue, bold = true },
NeogitDiffHeaderHighlight = { bg = palette.bg3, fg = palette.orange, bold = true },
NeogitDiffHeaderHighlight = { bg = palette.bg3, fg = palette.orange, bold = true, nocombine = false },
NeogitNotificationInfo = { link = "DiagnosticInfo" },
NeogitNotificationWarning = { link = "DiagnosticWarn" },
NeogitNotificationError = { link = "DiagnosticError" },
Expand All @@ -158,7 +158,7 @@ function M.setup()
NeogitStash = { link = "Comment" },
NeogitRebaseDone = { link = "Comment" },
NeogitCursorLine = { bg = palette.bg1 },
NeogitFold = { fg = "None", bg = "None" },
NeogitFold = { fg = "NONE", bg = "NONE" },
NeogitChangeModified = { fg = palette.bg_blue, bold = true, italic = true },
NeogitChangeAdded = { fg = palette.bg_green, bold = true, italic = true },
NeogitChangeDeleted = { fg = palette.bg_red, bold = true, italic = true },
Expand Down

0 comments on commit 62a2ff4

Please sign in to comment.