difi/internal/config/config.go
2026-01-30 15:32:49 -05:00

21 lines
352 B
Go

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