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**.
This commit is contained in:
Andrei Heidelbacher 2025-05-01 02:08:46 +02:00
commit 66c32802b4

View file

@ -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