allow hiding bottom line

This commit is contained in:
Jesse Duffield
2022-04-18 09:41:40 +10:00
parent 3477cbc81f
commit 9b947b74a2
4 changed files with 16 additions and 1 deletions

View File

@@ -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,