From 47f66398b6c533b9c7aa2bf110f444db8a54e3fc Mon Sep 17 00:00:00 2001 From: xnm Date: Sat, 6 Sep 2025 17:18:56 +0300 Subject: [PATCH] =?UTF-8?q?chore(config):=20=F0=9F=8E=A8=20restructure=20l?= =?UTF-8?q?azygit=20theme=20configuration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move theme settings under `gui` section to match latest lazygit configuration format. This aligns with the updated configuration structure introduced in recent versions. The color values remain unchanged - only the nesting structure has been modified to maintain compatibility with lazygit's configuration schema requirements. --- home/.config/lazygit/config.yml | 45 +++++++++++++++++---------------- 1 file changed, 23 insertions(+), 22 deletions(-) diff --git a/home/.config/lazygit/config.yml b/home/.config/lazygit/config.yml index daa55ce..54bb67f 100644 --- a/home/.config/lazygit/config.yml +++ b/home/.config/lazygit/config.yml @@ -1,23 +1,24 @@ -theme: - activeBorderColor: - - '#8bd5ca' - - bold - inactiveBorderColor: - - '#a5adcb' - optionsTextColor: - - '#8aadf4' - selectedLineBgColor: - - '#363a4f' - cherryPickedCommitBgColor: - - '#494d64' - cherryPickedCommitFgColor: - - '#8bd5ca' - unstagedChangesColor: - - '#ed8796' - defaultFgColor: - - '#cad3f5' - searchingActiveBorderColor: - - '#eed49f' +gui: + theme: + activeBorderColor: + - '#8bd5ca' + - bold + inactiveBorderColor: + - '#a5adcb' + optionsTextColor: + - '#8aadf4' + selectedLineBgColor: + - '#363a4f' + cherryPickedCommitBgColor: + - '#494d64' + cherryPickedCommitFgColor: + - '#8bd5ca' + unstagedChangesColor: + - '#ed8796' + defaultFgColor: + - '#cad3f5' + searchingActiveBorderColor: + - '#eed49f' -authorColors: - '*': '#b7bdf8' + authorColors: + '*': '#b7bdf8'