1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

nvim: fix lualine background

This commit is contained in:
Henrik Hautakoski 2025-03-30 10:13:20 +02:00
parent e3e733f528
commit 300d300664
2 changed files with 38 additions and 38 deletions

View file

@ -87,8 +87,12 @@ local options = {
UfoFoldedEllipsis = { link = "Comment" },
-- Statusline
StatusLine = { fg = colors.text, bg = colors.crust },
StatusLineNormal = { link = "StatusLine" },
-- Something resets StatusLine highlight background, so use another one for now :)
-- StatusLine = { fg = colors.text, bg = colors.crust },
StatusLineLualine = { fg = colors.text, bg = colors.crust },
StatusLineNormal = { link = "StatusLineLualine" },
StatusLineSeparator = { fg = colors.rosewater, bg = colors.crust },
StatusLineInsert = { fg = colors.base, bg = colors.blue },
StatusLineVisual = { fg = colors.base, bg = colors.mauve },

View file

@ -52,27 +52,23 @@ return {
theme = {
normal = {
a = "StatusLineNormal",
b = "StatusLine",
c = "StatusLine",
x = "StatusLine",
y = "StatusLine",
z = "StatusLine",
b = "StatusLineLualine",
c = "StatusLineLualine",
x = "StatusLineLualine",
y = "StatusLineLualine",
z = "StatusLineLualine",
},
command = {
a = "StatusLineCommand",
z = "StatusLine",
},
insert = {
a = "StatusLineInsert",
z = "StatusLine",
},
visual = {
a = "StatusLineVisual",
z = "StatusLine",
},
replace = {
a = "StatusLineReplace",
z = "StatusLine",
},
},
},