github.com/lmorg/murex@v0.0.0-20240217211045-e081c89cd4ef/config/defaults/profile_posix.go (about)

     1  //go:build !windows && !plan9
     2  // +build !windows,!plan9
     3  
     4  package defaults
     5  
     6  import (
     7  	_ "embed"
     8  )
     9  
    10  //go:embed profile_posix.mx
    11  var profilePosix []byte
    12  
    13  func init() {
    14  	DefaultProfiles = append(DefaultProfiles, &DefaultProfileT{
    15  		Name:  "profile_posix",
    16  		Block: profilePosix,
    17  	})
    18  }