Skip to content

Commit

Permalink
fix(lazygit): use Visual instead of CursorLine for selected line. F…
Browse files Browse the repository at this point in the history
…ixes #2846
  • Loading branch information
folke committed Mar 27, 2024
1 parent ce5917a commit 6ed771d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lazyvim/util/lazygit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function M.update_config()
inactiveBorderColor = { LazyVim.ui.color("FloatBorder") or "blue" },
optionsTextColor = { "blue" },
searchingActiveBorderColor = { LazyVim.ui.color("MatchParen") or "orange", "bold" },
selectedLineBgColor = { LazyVim.ui.color("CursorLine", true) }, -- set to `default` to have no background colour
selectedLineBgColor = { LazyVim.ui.color("Visual", true) }, -- set to `default` to have no background colour
unstagedChangesColor = { "red" },
}
local config = [[
Expand Down

0 comments on commit 6ed771d

Please sign in to comment.