summaryrefslogtreecommitdiff
path: root/lua/no-clown-fiesta/Neogit.lua
blob: e5da9d145302e286f880851fdef2782b5aedb492 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
local Neogit = {
  NeogitNotificationInfo = { fg = C.sign_add },
  NeogitNotificationWarning = { fg = C.warning_orange },
  NeogitNotificationError = { fg = C.sign_delete },
  NeogitDiffAddHighlight = { fg = C.sign_add, bg = C.neogit_light_green },
  NeogitDiffDeleteHighlight = { fg = C.sign_delete, bg = C.neogit_light_red },
  NeogitDiffContextHighlight = { fg = C.fg, bg = C.accent },
  NeogitHunkHeader = { fg = C.fg, bg = C.alt_bg },
  NeogitHunkHeaderHighlight = { fg = C.fg, bg = C.gray },
  NeogitDiffAdd = { fg = C.sign_add, bg = C.neogit_green },
  NeogitDiffDelete = { fg = C.sign_delete, bg = C.neogit_red },
}

return Neogit