summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-04-18 09:41:40 +1000
committerJesse Duffield <jessedduffield@gmail.com>2022-04-18 09:58:36 +1000
commit9b947b74a2170a9a89a6f6e9bdf8772bd7e4ee85 (patch)
tree71dc82e0c142b7989cb7b7e7c4d44082c881568f /pkg/config
parent3477cbc81f7011de0eff6b37b646c850cfc3ffb3 (diff)
allow hiding bottom line
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/user_config.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index c4758d9df..db913df1b 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -43,6 +43,7 @@ type GuiConfig struct {
ShowFileTree bool `yaml:"showFileTree"`
ShowRandomTip bool `yaml:"showRandomTip"`
ShowCommandLog bool `yaml:"showCommandLog"`
+ ShowBottomLine bool `yaml:"showBottomLine"`
CommandLogSize int `yaml:"commandLogSize"`
}
@@ -351,6 +352,7 @@ func GetDefaultConfig() *UserConfig {
SkipNoStagedFilesWarning: false,
ShowListFooter: true,
ShowCommandLog: true,
+ ShowBottomLine: true,
ShowFileTree: true,
ShowRandomTip: true,
CommandLogSize: 8,