From 84ec08a97b10a8ecf3c9d6db46a774212e5ed0fb Mon Sep 17 00:00:00 2001 From: Niverton Date: Sat, 16 Mar 2024 12:30:22 +0100 Subject: [PATCH] feat(heirline): higher contrast inactive buffers --- lua/astrobox/heirline.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/astrobox/heirline.lua b/lua/astrobox/heirline.lua index da7fa45..81cb8cf 100644 --- a/lua/astrobox/heirline.lua +++ b/lua/astrobox/heirline.lua @@ -1,7 +1,9 @@ local M = {} function M.setup_colors(colors) + local theme = require("astrobox").theme colors.buffer_active_bg = colors.tab_active_bg + colors.buffer_fg = theme.statusbar.inactive.fg return colors end