mirror of
				https://github.com/jesseduffield/lazygit.git
				synced 2025-10-30 23:57:43 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			248 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			248 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // +build !windows,!linux
 | |
| 
 | |
| package config
 | |
| 
 | |
| // GetPlatformDefaultConfig gets the defaults for the platform
 | |
| func GetPlatformDefaultConfig() OSConfig {
 | |
| 	return OSConfig{
 | |
| 		OpenCommand:     "open {{filename}}",
 | |
| 		OpenLinkCommand: "open {{link}}",
 | |
| 	}
 | |
| }
 |