summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
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 6ff3b36a1..1e42b0e15 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -106,6 +106,7 @@ type MergingConfig struct {
type LogConfig struct {
Order string `yaml:"order"` // one of date-order, author-date-order, topo-order
ShowGraph string `yaml:"showGraph"` // one of always, never, when-maximised
+ ShowWholeGraph bool `yaml:"showWholeGraph"`
}
type CommitPrefixConfig struct {
@@ -385,6 +386,7 @@ func GetDefaultConfig() *UserConfig {
Log: LogConfig{
Order: "topo-order",
ShowGraph: "when-maximised",
+ ShowWholeGraph: false,
},
SkipHookPrefix: "WIP",
AutoFetch: true,