Files
Astrobox/lua/astrobox/highlights/modules/astro_heirline.lua
Niverton 0c657b5bc8 Added heirline setup_colors support
Match active tab with winbar background
2024-02-21 14:22:01 +01:00

12 lines
406 B
Lua

return function(theme)
return {
HeirlineInactive = theme.error,
HeirlineNormal = { link = "StatusNormal" },
HeirlineInsert = { link = "StatusInsert" },
HeirlineVisual = { link = "StatusVisual" },
HeirlineReplace = { link = "StatusReplace" },
HeirlineCommand = { link = "StatusCommand" },
HeirlineTerminal = { link = "StatusTerminal" },
}
end