diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-09 01:46:58 +0200 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-07-09 01:46:58 +0200 |
commit | 7567355c95c0c770dde9ff1c3775495adeecb5de (patch) | |
tree | dae61259efe9d8f5949202fe842827dc0c6e88a4 /lua/no-clown-fiesta | |
parent | 17ed717c0f24d2cf4c73a7b29bb84de5ca467375 (diff) |
Add more hl groups to neogit
Diffstat (limited to 'lua/no-clown-fiesta')
-rw-r--r-- | lua/no-clown-fiesta/Neogit.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/no-clown-fiesta/Neogit.lua b/lua/no-clown-fiesta/Neogit.lua index e0dbcad..a95982c 100644 --- a/lua/no-clown-fiesta/Neogit.lua +++ b/lua/no-clown-fiesta/Neogit.lua @@ -1,5 +1,12 @@ local Neogit = { + NeogitNotificationInfo = { fg = C.green }, + NeogitNotificationWarning = { fg = C.warning_orange }, + NeogitNotificationError = { fg = C.red }, NeogitDiffAddHighlight = { fg = C.green, bg = C.alt_bg }, + NeogitDiffDeleteHighlight = { fg = C.red, bg = C.alt_bg }, + NeogitDiffContextHighlight = { fg = C.fg, bg = C.alt_bg }, + NeogitHunkHeader = { fg = C.fg, bg = C.alt_bg }, + NeogitHunkHeaderHighlight = { fg = C.fg, bg = C.alt_bg }, } return Neogit |