summaryrefslogtreecommitdiffstats
path: root/pkg/config/user_config.go
diff options
context:
space:
mode:
authorArnaud PERALTA <arnaud.peralta@gmail.com>2022-11-20 19:05:42 +0100
committerArnaud PERALTA <arnaud.peralta@gmail.com>2022-11-21 21:48:18 +0100
commit37997dcbcd3797f841bebe7d96ab9a1e0814cff3 (patch)
tree21dda403a73571415700eb276d72517ce6b7a2e0 /pkg/config/user_config.go
parent924a152ae92372a178bd0fc32b411612b995a6a1 (diff)
[#2279] defaultFgColor entry in theme config
Diffstat (limited to 'pkg/config/user_config.go')
-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 c31c74fe0..52d034f43 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -63,6 +63,7 @@ type ThemeConfig struct {
CherryPickedCommitBgColor []string `yaml:"cherryPickedCommitBgColor"`
CherryPickedCommitFgColor []string `yaml:"cherryPickedCommitFgColor"`
UnstagedChangesColor []string `yaml:"unstagedChangesColor"`
+ DefaultFgColor []string `yaml:"defaultFgColor"`
}
type CommitLengthConfig struct {
@@ -365,6 +366,7 @@ func GetDefaultConfig() *UserConfig {
CherryPickedCommitBgColor: []string{"cyan"},
CherryPickedCommitFgColor: []string{"blue"},
UnstagedChangesColor: []string{"red"},
+ DefaultFgColor: []string{"default"},
},
CommitLength: CommitLengthConfig{Show: true},
SkipNoStagedFilesWarning: false,