mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-02 09:21:40 +02:00
11 lines
209 B
Go
11 lines
209 B
Go
// +build !windows,!linux
|
|
|
|
package config
|
|
|
|
// GetPlatformDefaultConfig gets the defaults for the platform
|
|
func GetPlatformDefaultConfig() []byte {
|
|
return []byte(
|
|
`os:
|
|
openCommand: 'open {{filename}}'`)
|
|
}
|