Replies: 1 comment 7 replies
-
I'm not sure if I understood you correctly but does setting colored = true / false in options table not work ? require'lualine'.setup {
options = {
colored = false,
}
} |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Once #566 merged, it seems easier for me to customize the colors, thanks.
Here's how I configure lualine:
vim.g.statusline_monochrome
color
and other color related properties if any, e.g.colored
,diff.diff_color
How about having a global
colored
option to enable or disable the entire statusline component colors ?enabled means each component uses its color, disabled means using
StatusLine
group or we can pass another highlight group (as string or table{ fg = ..., bg = ..., ...
?) to be used as global statusline color.I have the base implementation on my local setup but I think it's still poor.
Just post the idea here in case anyone is interested
Beta Was this translation helpful? Give feedback.
All reactions