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.
17 lines
535 B
Lua
17 lines
535 B
Lua
local M = {}
|
|
local util = require("catppuccino.utils.util")
|
|
|
|
function M.get(cpt)
|
|
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.diff.delete, bg = cpt.bg },
|
|
NeogitDiffAddHighlight = { fg = cpt.diff.add, bg = cpt.bg },
|
|
}
|
|
end
|
|
|
|
return M
|