Files
Astrobox/lua/astrobox/highlights/modules/gitsigns.lua
Niverton b4d05200d3 Now standalone plugin
First impl of standalone colorscheme
2023-12-09 23:20:15 +01:00

8 lines
191 B
Lua

return function(palette)
return {
GitSignsAdd = { fg = palette.green },
GitSignsChange = { fg = palette.yellow },
GitSignsDelete = { fg = palette.red },
}
end