Skip to content

Commit

Permalink
ref(highlights.plugins): make neogit highlights more dynamic, remove …
Browse files Browse the repository at this point in the history
…hardcoded hex
  • Loading branch information
NTBBloodbath committed Jul 10, 2023
1 parent 84edcc7 commit 50cacdc
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lua/sweetie/highlights/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ plugins.setup = function(palette, config)
NeogitBranch = { fg = palette.magenta },
NeogitRemote = { fg = palette.violet },
NeogitStashes = { fg = palette.blue, bold = true },
NeogitHunkHeader = { fg = palette.fg, bg = "#303042" },
NeogitHunkHeader = { fg = palette.fg, bg = palette.bg_hl },
NeogitHunkHeaderHighlight = { fg = palette.teal, bg = palette.bg_alt },
NeogitDiffAdd = { fg = palette.green, bg = "#303042" },
NeogitDiffAddHighlight = { fg = palette.green, bg = "#303042", bold = true },
NeogitDiffDelete = { fg = palette.red, bg = "#303042" },
NeogitDiffDeleteHighlight = { fg = palette.red, bg = "#303042", bold = true },
NeogitDiffAdd = { fg = palette.green, bg = palette.bg_hl },
NeogitDiffAddHighlight = { fg = palette.green, bg = palette.bg_hl, bold = true },
NeogitDiffDelete = { fg = palette.red, bg = palette.bg_hl },
NeogitDiffDeleteHighlight = { fg = palette.red, bg = palette.bg_hl, bold = true },
NeogitDiffContext = { fg = palette.fg_alt, bg = palette.bg },
NeogitDiffContextHighlight = { fg = palette.fg, bg = palette.bg_alt, bold = true },
NeogitStagedChanges = { fg = palette.blue, bold = true },
Expand Down

0 comments on commit 50cacdc

Please sign in to comment.