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:
Francisco Lopes 2021-06-25 09:33:10 -03:00 committed by GitHub
parent 4d45b01c46
commit 933bd158ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 0 deletions

View File

@ -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

View File

@ -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