Skip to content

Commit

Permalink
feat(base): add transparency option to cursorline
Browse files Browse the repository at this point in the history
  • Loading branch information
A-Lamia authored and mehalter committed Oct 11, 2023
1 parent 7aee6a6 commit a2d4203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/astrotheme/groups/base.lua
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ local function callback(opts)
--------------------
CursorColumn = { fg = C.none, bg = C.ui.current_line },
ColorColumn = { fg = C.none, bg = C.ui.current_line }, -- NOTE: Find better color
CursorLine = { fg = C.none, bg = C.ui.current_line },
CursorLine = { fg = C.none, bg = opts.transparent and C.none or C.ui.current_line },
MatchParen = { fg = C.ui.orange, bg = C.none, bold = true },

--------------------
Expand Down

0 comments on commit a2d4203

Please sign in to comment.