summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_default_platform.go
blob: df205c0d7d9de674fe03282d36574f72e02b5f98 (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build !windows,!linux

package config

// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() []byte {
	return []byte(
		`os:
  openCommand: 'open {{filename}}'
  openLinkCommand: 'open {{link}}'`)
}