feat: add setting for bold A section of lualine (#68)
Upstream lualine themes have this section in bold, so provide an option to have that.
This commit is contained in:
parent
4d45b01c46
commit
933bd158ce
@ -49,4 +49,10 @@ if vim.o.background == "light" then
|
||||
end
|
||||
end
|
||||
|
||||
if vim.g.tokyonight_lualine_bold then
|
||||
for _, mode in pairs(tokyonight) do
|
||||
mode.a.gui = "bold"
|
||||
end
|
||||
end
|
||||
|
||||
return tokyonight
|
||||
|
@ -31,6 +31,7 @@ config = {
|
||||
darkFloat = opt("dark_float", true),
|
||||
darkSidebar = opt("dark_sidebar", true),
|
||||
transform_colors = false,
|
||||
lualineBold = opt("lualine_bold", false),
|
||||
}
|
||||
|
||||
if config.style == "day" then
|
||||
|
Loading…
Reference in New Issue
Block a user