summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-06-14 18:17:08 +1000
committerJesse Duffield <jessedduffield@gmail.com>2021-06-14 18:17:08 +1000
commitce7cbe58a045b9a7efe5fb48bb75eaa8c8593af3 (patch)
tree51fba42f4aa4f072893c89bcea917dbc1979ea52 /pkg/config
parent7588d5290b2fc05f2a33236c8b648a5aaf2d9d4a (diff)
naming change
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/user_config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index a30591fc0..1312e4bd8 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -35,7 +35,7 @@ type GuiConfig struct {
Theme ThemeConfig `yaml:"theme"`
CommitLength CommitLengthConfig `yaml:"commitLength"`
SkipNoStagedFilesWarning bool `yaml:"skipNoStagedFilesWarning"`
- ShowTotal bool `yaml:"showTotal"`
+ ShowListFooter bool `yaml:"showListFooter"`
ShowFileTree bool `yaml:"showFileTree"`
ShowRandomTip bool `yaml:"showRandomTip"`
ShowCommandLog bool `yaml:"showCommandLog"`
@@ -307,7 +307,7 @@ func GetDefaultConfig() *UserConfig {
},
CommitLength: CommitLengthConfig{Show: true},
SkipNoStagedFilesWarning: false,
- ShowTotal: true,
+ ShowListFooter: true,
ShowCommandLog: true,
ShowFileTree: false,
ShowRandomTip: true,