1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-02-07 13:42:01 +02:00

Change the default of the "gui.borders" config to "rounded"

Most people seem to agree that it looks better than the sharp edges of "single".
This commit is contained in:
Stefan Haller 2023-09-09 10:42:24 +02:00
parent d7e2ca3f10
commit 5b8a8d356c
2 changed files with 2 additions and 2 deletions

View File

@ -83,7 +83,7 @@ gui:
commandLogSize: 8
splitDiff: 'auto' # one of 'auto' | 'always'
skipRewordInEditorWarning: false # for skipping the confirmation before launching the reword editor
border: 'single' # one of 'single' | 'double' | 'rounded' | 'hidden'
border: 'rounded' # one of 'single' | 'double' | 'rounded' | 'hidden'
animateExplosion: true # shows an explosion animation when nuking the working tree
git:
paging:

View File

@ -466,7 +466,7 @@ func GetDefaultConfig() *UserConfig {
CommandLogSize: 8,
SplitDiff: "auto",
SkipRewordInEditorWarning: false,
Border: "single",
Border: "rounded",
AnimateExplosion: true,
},
Git: GitConfig{