Skip to content

Commit cd7ac8f

Browse files
committed
chore: fix formatting
1 parent 00a8342 commit cd7ac8f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lua/nvim-web-devicons.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,13 +130,14 @@ local function set_up_highlight(icon_data)
130130

131131
local hl_group = get_highlight_name(icon_data)
132132
if hl_group and (icon_data.color or icon_data.cterm_color) then
133-
134133
local hl_def = {
135134
fg = icon_data.color,
136135
ctermfg = tonumber(icon_data.cterm_color),
137136
}
138137

139-
if global_opts.blend then hl_def.blend = global_opts.blend end
138+
if global_opts.blend then
139+
hl_def.blend = global_opts.blend
140+
end
140141

141142
nvim_set_hl(0, get_highlight_name(icon_data), hl_def)
142143
end

0 commit comments

Comments
 (0)