mirror of https://github.com/sgoudham/nvim.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
498 B
Lua
12 lines
498 B
Lua
local util = require("catppuccino.utils.util")
|
|
|
|
return {
|
|
NeogitBranch = {fg = cpt.magenta},
|
|
NeogitRemote = {fg = cpt.pink},
|
|
NeogitHunkHeader = {bg = cpt.bg_highlight, fg = cpt.fg},
|
|
NeogitHunkHeaderHighlight = {bg = cpt.fg_gutter, fg = cpt.blue},
|
|
NeogitDiffContextHighlight = {bg = util.darken(cpt.fg_gutter, 0.5), fg = cpt.fg_alt},
|
|
NeogitDiffDeleteHighlight = {fg = cpt.git.delete, bg = cpt.diff.delete},
|
|
NeogitDiffAddHighlight = {fg = cpt.git.add, bg = cpt.diff.add}
|
|
}
|