1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-08-07 22:02:56 +03:00

introduce platform specific defaults

This commit is contained in:
Jesse Duffield
2018-09-01 14:33:01 +10:00
parent ad880e2d56
commit d31520261f
8 changed files with 53 additions and 83 deletions

View File

@@ -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}}'`)
}