Skip to content

Commit a2d4203

Browse files
A-Lamiamehalter
authored andcommitted
feat(base): add transparency option to cursorline
1 parent 7aee6a6 commit a2d4203

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/astrotheme/groups/base.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ local function callback(opts)
176176
--------------------
177177
CursorColumn = { fg = C.none, bg = C.ui.current_line },
178178
ColorColumn = { fg = C.none, bg = C.ui.current_line }, -- NOTE: Find better color
179-
CursorLine = { fg = C.none, bg = C.ui.current_line },
179+
CursorLine = { fg = C.none, bg = opts.transparent and C.none or C.ui.current_line },
180180
MatchParen = { fg = C.ui.orange, bg = C.none, bold = true },
181181

182182
--------------------

0 commit comments

Comments
 (0)