mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-10 11:10:18 +02:00
4912205adb
WIP
11 lines
303 B
Go
11 lines
303 B
Go
package config
|
|
|
|
// OSConfig contains config on the level of the os
|
|
type OSConfig struct {
|
|
// OpenCommand is the command for opening a file
|
|
OpenCommand string `yaml:"openCommand,omitempty"`
|
|
|
|
// OpenCommand is the command for opening a link
|
|
OpenLinkCommand string `yaml:"openLinkCommand,omitempty"`
|
|
}
|