summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2022-05-01 12:21:32 +1000
committerGitHub <noreply@github.com>2022-05-01 12:21:32 +1000
commitd85f4792af2a760fe07251e66e286e5a6929c26d (patch)
treec25977fa3283f8f515c9e0cf36532af4fb20a69b /pkg/config
parentbabb9d86567593bb0707570d3105d1010bf8aca9 (diff)
parent5524f007f3b32dcb0b88175c7c51b4c069d1c544 (diff)
Merge pull request #1894 from Ryooooooga/feature/icons
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 db913df1b..95b3c87b5 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -44,6 +44,7 @@ type GuiConfig struct {
ShowRandomTip bool `yaml:"showRandomTip"`
ShowCommandLog bool `yaml:"showCommandLog"`
ShowBottomLine bool `yaml:"showBottomLine"`
+ ShowIcons bool `yaml:"showIcons"`
CommandLogSize int `yaml:"commandLogSize"`
}
@@ -355,6 +356,7 @@ func GetDefaultConfig() *UserConfig {
ShowBottomLine: true,
ShowFileTree: true,
ShowRandomTip: true,
+ ShowIcons: false,
CommandLogSize: 8,
},
Git: GitConfig{