summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorDaniel Kiss <dkiss@pop-os.localdomain>2022-01-29 00:15:55 +0100
committerJesse Duffield <jessedduffield@gmail.com>2022-03-16 19:21:39 +1100
commitf5a5b7f966c40f11acbc1e2788dba50e72147242 (patch)
treed0644e793233632504b49ffd763acae22d292f1e /pkg/config
parent91dab7fef9cffaead9925d22bfb18b1f6c73aa2c (diff)
Add unstagedChangesColor config option
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 9d7781358..3b4e0f139 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -54,6 +54,7 @@ type ThemeConfig struct {
SelectedRangeBgColor []string `yaml:"selectedRangeBgColor"`
CherryPickedCommitBgColor []string `yaml:"cherryPickedCommitBgColor"`
CherryPickedCommitFgColor []string `yaml:"cherryPickedCommitFgColor"`
+ UnstagedChangesColor []string `yaml:"unstagedChangesColor"`
}
type CommitLengthConfig struct {
@@ -342,6 +343,7 @@ func GetDefaultConfig() *UserConfig {
SelectedRangeBgColor: []string{"blue"},
CherryPickedCommitBgColor: []string{"blue"},
CherryPickedCommitFgColor: []string{"cyan"},
+ UnstagedChangesColor: []string{"red"},
},
CommitLength: CommitLengthConfig{Show: true},
SkipNoStagedFilesWarning: false,