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

9 lines
129 B
Lua

local M = {}
function M.setup_colors(colors)
colors.buffer_active_bg = colors.tab_active_bg
return colors
end
return M