summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorRyooooooga <eial5q265e5@gmail.com>2022-04-23 10:14:42 +0900
committerRyooooooga <eial5q265e5@gmail.com>2022-04-23 12:25:40 +0900
commitb07aeda5a6d9b4990acf559ce0dc2639a7aca877 (patch)
tree90c658a96a2bc012ce9c93261cecbe420cafbc82 /pkg/config
parent8b103b16bd3a06d0e661e507832459fae7ec1198 (diff)
feat(gui): show file 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{