Files

13 lines
224 B
Lua
Raw Permalink Normal View History

2025-03-05 21:06:49 -05:00
local M = {}
function M.setup(theme)
return {
-- GitSigns
GitSignsAdd = { fg = theme.diff.add },
GitSignsChange = { fg = theme.diff.change },
GitSignsDelete = { fg = theme.diff.remove },
}
end
return M