diff --git a/colors.go b/colors.go index c20a619..0efd156 100644 --- a/colors.go +++ b/colors.go @@ -68,6 +68,10 @@ func parseStyles() styleMap { sm.parseGNU(env) } + if env := os.Getenv("LF_COLORS"); env != "" { + sm.parseGNU(env) + } + return sm }