2020-12-10 20:35:00 -05:00
|
|
|
package ui
|
|
|
|
|
|
|
|
// Config contains TUI-specific configuration.
|
|
|
|
type Config struct {
|
|
|
|
ShowAllFiles bool
|
|
|
|
Gopath string `env:"GOPATH"`
|
|
|
|
HomeDir string `env:"HOME"`
|
|
|
|
GlamourMaxWidth uint
|
|
|
|
GlamourStyle string
|
2022-01-29 19:42:38 -05:00
|
|
|
EnableMouse bool
|
2020-12-10 20:35:00 -05:00
|
|
|
|
2021-01-15 15:58:58 -05:00
|
|
|
// Which directory should we start from?
|
|
|
|
WorkingDirectory string
|
|
|
|
|
2020-12-10 20:35:00 -05:00
|
|
|
// For debugging the UI
|
2024-07-03 12:11:29 -03:00
|
|
|
HighPerformancePager bool `env:"GLOW_HIGH_PERFORMANCE_PAGER" envDefault:"true"`
|
|
|
|
GlamourEnabled bool `env:"GLOW_ENABLE_GLAMOUR" envDefault:"true"`
|
2020-12-10 20:35:00 -05:00
|
|
|
}
|