9 lines
210 B
Lua
9 lines
210 B
Lua
---@param theme Theme
|
|
return function(theme)
|
|
return {
|
|
GitSignsAdd = theme.diff.normal.add,
|
|
GitSignsChange = theme.diff.normal.text,
|
|
GitSignsDelete = theme.diff.normal.del,
|
|
}
|
|
end
|