diff --git a/src/color.rs b/src/color.rs index 7a589c81b..4b761a397 100644 --- a/src/color.rs +++ b/src/color.rs @@ -139,7 +139,12 @@ impl Colors { ThemeOption::Default | ThemeOption::NoLscolors => Some(Theme::default().color), ThemeOption::Custom(ref file) => { // TODO: drop the `themes` dir prefix, adding it here only for backwards compatibility - Some(Theme::from_path::(Path::new("themes").join(file).to_str().unwrap_or(file)).unwrap_or_default()) + Some( + Theme::from_path::( + Path::new("themes").join(file).to_str().unwrap_or(file), + ) + .unwrap_or_default(), + ) } }; let lscolors = match t {