Skip to content

Commit cfd9762

Browse files
shaid3nvmarcosp
authored andcommitted
fix(colors): change opts names
1 parent eacdd67 commit cfd9762

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lua/yugen/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ local config = {
66
bold_vert_split = false,
77
dark_variant = 'main',
88
transparent = false,
9-
statusline_transparent = false,
9+
transparent_statusline = false,
1010
disable_italics = false,
1111
dim_nc_background = false,
1212

lua/yugen/theme.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function M.get(config)
99
italic = (config.disable_italics and p.none) or 'italic',
1010
vert_split = (config.bold_vert_split and groups.border) or p.none,
1111
background = (config.transparent and p.none) or groups.background,
12-
float_background = (config.statusline_transparent and p.none) or groups.panel,
12+
float_background = (config.transparent_statusline and p.none) or groups.panel,
1313
}
1414
styles.nc_background = (config.dim_nc_background and not config.transparent and groups.panel)
1515
or styles.background

0 commit comments

Comments
 (0)