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:
@@ -49,4 +49,10 @@ if vim.o.background == "light" then
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if vim.g.tokyonight_lualine_bold then
|
||||||
|
for _, mode in pairs(tokyonight) do
|
||||||
|
mode.a.gui = "bold"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
return tokyonight
|
return tokyonight
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ config = {
|
|||||||
darkFloat = opt("dark_float", true),
|
darkFloat = opt("dark_float", true),
|
||||||
darkSidebar = opt("dark_sidebar", true),
|
darkSidebar = opt("dark_sidebar", true),
|
||||||
transform_colors = false,
|
transform_colors = false,
|
||||||
|
lualineBold = opt("lualine_bold", false),
|
||||||
}
|
}
|
||||||
|
|
||||||
if config.style == "day" then
|
if config.style == "day" then
|
||||||
|
|||||||
Reference in New Issue
Block a user