difi/internal/config/config.go
2026-01-30 22:38:34 -05:00

20 lines
281 B
Go

package config
type Config struct {
UI UIConfig
}
type UIConfig struct {
LineNumbers string // "relative", "absolute", "hybrid", "hidden"
Theme string
}
func Load() Config {
return Config{
UI: UIConfig{
LineNumbers: "hybrid",
Theme: "default",
},
}
}