summaryrefslogtreecommitdiffstats
path: root/pkg/config
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-08-26 15:46:18 +1000
committerJesse Duffield <jessedduffield@gmail.com>2018-08-26 16:53:31 +1000
commit540edc0c35e97393d9a01c927f7ac962bcbf6d37 (patch)
treef9f93b1905828f0c665fc25819400e16f4cbc27e /pkg/config
parent93ab892bdd1226f9a519a938c8b28590e71e54f3 (diff)
anonymous reporting data
Diffstat (limited to 'pkg/config')
-rw-r--r--pkg/config/app_config.go32
1 files changed, 16 insertions, 16 deletions
diff --git a/pkg/config/app_config.go b/pkg/config/app_config.go
index aa56365e3..d55393a41 100644
--- a/pkg/config/app_config.go
+++ b/pkg/config/app_config.go
@@ -141,22 +141,22 @@ func (c *AppConfig) InsertToUserConfig(key, value string) error {
func getDefaultConfig() []byte {
return []byte(`
- gui:
- ## stuff relating to the UI
- scrollHeight: 2
- theme:
- activeBorderColor:
- - white
- - bold
- inactiveBorderColor:
- - white
- optionsTextColor:
- - blue
- git:
- # stuff relating to git
- os:
- # stuff relating to the OS
-
+gui:
+ ## stuff relating to the UI
+ scrollHeight: 2
+ theme:
+ activeBorderColor:
+ - white
+ - bold
+ inactiveBorderColor:
+ - white
+ optionsTextColor:
+ - blue
+git:
+ # stuff relating to git
+os:
+ # stuff relating to the OS
+reporting: 'undetermined' # one of: 'on' | 'off' | 'undetermined'
`)
}