summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2021-11-21 12:48:49 +1100
committerJesse Duffield <jessedduffield@gmail.com>2021-12-06 22:37:28 +1100
commit1996eddd9124709431ced14b1650ae5a50963be7 (patch)
tree021b88b94139b21beae4cae92b9f0a119e7361f2 /pkg/config
parentde0e885c65c7d6505055af490e58c21aad59f67e (diff)
more efficient context diff size changing
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/user_config.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/config/user_config.go b/pkg/config/user_config.go
index 14038c9ae..a8a54126a 100644
--- a/pkg/config/user_config.go
+++ b/pkg/config/user_config.go
@@ -70,9 +70,9 @@ type GitConfig struct {
DisableForcePushing bool `yaml:"disableForcePushing"`
CommitPrefixes map[string]CommitPrefixConfig `yaml:"commitPrefixes"`
// this shoudl really be under 'gui', not 'git'
- ParseEmoji bool `yaml:"parseEmoji"`
- Log LogConfig `yaml:"log"`
- DiffContextSize int `yaml:"diffContextSize"`
+ ParseEmoji bool `yaml:"parseEmoji"`
+ Log LogConfig `yaml:"log"`
+ DiffContextSize int `yaml:"diffContextSize"`
}
type PagingConfig struct {