parse LF_COLORS variable for lf specific colors

This commit is contained in:
Gokcehan 2020-12-26 21:25:35 +03:00
parent d81b9eb858
commit 3b78309b89

View File

@ -68,6 +68,10 @@ func parseStyles() styleMap {
sm.parseGNU(env)
}
if env := os.Getenv("LF_COLORS"); env != "" {
sm.parseGNU(env)
}
return sm
}