mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
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:
parent
96ff3993a6
commit
66c32802b4
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue