Initial commit

This commit is contained in:
2025-03-05 21:06:49 -05:00
commit 5a40f441b0
11 changed files with 472 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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