diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-10 01:34:54 +0200 | 
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-10 01:34:54 +0200 | 
| commit | 36f710fd63cbb8856076e2340e7146eb54b978b0 (patch) | |
| tree | a0796da113316a301c877934a267bd7ad5888e4c | |
| parent | d7bc04cb2fbfc56c40815e975cb1447cc316cb72 (diff) | |
Update neogit with sign colors
| -rw-r--r-- | lua/no-clown-fiesta/Neogit.lua | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/lua/no-clown-fiesta/Neogit.lua b/lua/no-clown-fiesta/Neogit.lua index d31bcbb..76438a2 100644 --- a/lua/no-clown-fiesta/Neogit.lua +++ b/lua/no-clown-fiesta/Neogit.lua @@ -2,11 +2,11 @@ local Neogit = {    NeogitNotificationInfo = { fg = C.green },    NeogitNotificationWarning = { fg = C.warning_orange },    NeogitNotificationError = { fg = C.red }, -  NeogitDiffAddHighlight = { fg = C.green, bg = C.accent }, -  NeogitDiffDeleteHighlight = { fg = C.red, bg = C.accent }, +  NeogitDiffAddHighlight = { fg = C.sign_add, bg = C.accent }, +  NeogitDiffDeleteHighlight = { fg = C.sign_delete, bg = C.accent },    NeogitDiffContextHighlight = { fg = C.fg, bg = C.accent }, -  NeogitHunkHeader = { fg = C.fg, bg = C.gray_blue }, -  NeogitHunkHeaderHighlight = { fg = C.fg, bg = C.gray }, +  NeogitHunkHeader = { fg = C.fg, bg = C.gray }, +  NeogitHunkHeaderHighlight = { fg = C.fg, bg = C.gray_blue },  }  return Neogit  |