From 66c32802b4588f719bd398f34b9e7385dd763773 Mon Sep 17 00:00:00 2001 From: Andrei Heidelbacher Date: Thu, 1 May 2025 02:08:46 +0200 Subject: [PATCH] fix(lualine): change bg_base from p.base to p.surface Using `p.base` leads to confusing and indistinguishable statuslines with horizontal splits. Statuslines should use `p.surface`, according to https://rosepinetheme.com/palette/: > Panels that are not directly related to the focal context --- cards, > inputs, and **status lines**. --- lua/lualine/themes/rose-pine.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/lualine/themes/rose-pine.lua b/lua/lualine/themes/rose-pine.lua index 4c2c9a6..e409130 100644 --- a/lua/lualine/themes/rose-pine.lua +++ b/lua/lualine/themes/rose-pine.lua @@ -1,7 +1,7 @@ local p = require("rose-pine.palette") local config = require("rose-pine.config") -local bg_base = p.base +local bg_base = p.surface if config.options.styles.transparency then bg_base = "NONE" end