mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 17:58:51 +02:00
fix(lazygit): use Visual
instead of CursorLine
for selected line. Fixes #2846
This commit is contained in:
parent
ce5917a589
commit
6ed771de9d
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ function M.update_config()
|
||||||
inactiveBorderColor = { LazyVim.ui.color("FloatBorder") or "blue" },
|
inactiveBorderColor = { LazyVim.ui.color("FloatBorder") or "blue" },
|
||||||
optionsTextColor = { "blue" },
|
optionsTextColor = { "blue" },
|
||||||
searchingActiveBorderColor = { LazyVim.ui.color("MatchParen") or "orange", "bold" },
|
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" },
|
unstagedChangesColor = { "red" },
|
||||||
}
|
}
|
||||||
local config = [[
|
local config = [[
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue