diff options
| author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-11 00:09:06 +0200 | 
|---|---|---|
| committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-11 00:09:06 +0200 | 
| commit | 2c7de87a54020b05df328ce0bb804d47ebd33fa7 (patch) | |
| tree | bd0f055a93885749c4843954c3800f8818e34076 | |
| parent | 489c97fbabc6597c336c4bc7c56efd522aea3a0f (diff) | |
Add color to neogit add/del text
| -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 dde9984..5c9aac3 100644 --- a/lua/no-clown-fiesta/Neogit.lua +++ b/lua/no-clown-fiesta/Neogit.lua @@ -2,13 +2,13 @@ local Neogit = {    NeogitNotificationInfo = { fg = C.sign_add },    NeogitNotificationWarning = { fg = C.warning_orange },    NeogitNotificationError = { fg = C.sign_delete }, -  NeogitDiffAddHighlight = { fg = C.fg, bg = C.neogit_light_green }, -  NeogitDiffDeleteHighlight = { fg = C.fg, bg = C.neogit_light_red }, +  NeogitDiffAddHighlight = { fg = C.sign_add, bg = C.neogit_light_green }, +  NeogitDiffDeleteHighlight = { fg = C.sign_delete, bg = C.neogit_light_red },    NeogitDiffContextHighlight = { fg = C.light_gray, bg = C.alt_bg },    NeogitHunkHeader = { fg = C.fg, bg = C.alt_bg },    NeogitHunkHeaderHighlight = { fg = C.fg, bg = C.accent }, -  NeogitDiffAdd = { fg = C.fg, bg = C.neogit_green }, -  NeogitDiffDelete = { fg = C.fg, bg = C.neogit_red }, +  NeogitDiffAdd = { fg = C.sign_add, bg = C.neogit_green }, +  NeogitDiffDelete = { fg = C.sign_delete, bg = C.neogit_red },  }  return Neogit  |