summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_windows.go
blob: 96a810b501b92cc58a7aaf694bde7a8fa8be4026 (plain)
1
2
3
4
5
6
7
8
9
package config

// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() OSConfig {
	return OSConfig{
		Open:     `start "" {{filename}}`,
		OpenLink: `start "" {{link}}`,
	}
}