fix(lazygit): dont error when setting ansi color fails. Fixes #2829
This commit is contained in:
@ -44,7 +44,8 @@ end
|
|||||||
|
|
||||||
function M.update_theme()
|
function M.update_theme()
|
||||||
-- LazyGit uses color 241 a lot, so also set it to a nice color
|
-- LazyGit uses color 241 a lot, so also set it to a nice color
|
||||||
M.set_ansi_color(241, LazyVim.ui.color("Special") or "blue")
|
-- pcall, since some terminals don't like this
|
||||||
|
pcall(M.set_ansi_color, 241, LazyVim.ui.color("Special") or "blue")
|
||||||
|
|
||||||
local theme = {
|
local theme = {
|
||||||
activeBorderColor = { LazyVim.ui.color("MatchParen") or "orange", "bold" },
|
activeBorderColor = { LazyVim.ui.color("MatchParen") or "orange", "bold" },
|
||||||
|
Reference in New Issue
Block a user