7 lines
234 B
Lua
7 lines
234 B
Lua
-- Customize colors for each element each element has a `_fg` and a `_bg`
|
|
return function(colors)
|
|
local get_hlgroup = require("astronvim.utils").get_hlgroup
|
|
colors.git_branch_fg = get_hlgroup("Conditional").fg
|
|
return colors
|
|
end
|