summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/files.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/files.rs b/src/files.rs
index 8186cf8..c240920 100644
--- a/src/files.rs
+++ b/src/files.rs
@@ -28,7 +28,7 @@ use crate::widget::Events;
lazy_static! {
- static ref COLORS: LsColors = LsColors::from_env().unwrap();
+ static ref COLORS: LsColors = LsColors::from_env().unwrap_or_default();
static ref TAGS: RwLock<(bool, Vec<PathBuf>)> = RwLock::new((false, vec![]));
}