summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_default_platform.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/config/config_default_platform.go')
-rw-r--r--pkg/config/config_default_platform.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkg/config/config_default_platform.go b/pkg/config/config_default_platform.go
new file mode 100644
index 000000000..a87d5a7f6
--- /dev/null
+++ b/pkg/config/config_default_platform.go
@@ -0,0 +1,10 @@
+// +build !windows !linux
+
+package config
+
+// GetPlatformDefaultConfig gets the defaults for the platform
+func GetPlatformDefaultConfig() []byte {
+ return []byte(
+ `os:
+ openCommand: 'open {{filename}}'`)
+}