From 853b40cf18a2a0686e6b63fde9bff35db3b1d055 Mon Sep 17 00:00:00 2001 From: Martin von Zweigbergk Date: Wed, 27 Oct 2021 21:25:45 -0700 Subject: [PATCH] cleanup: run rustfmt on formatter (missed in recent commit) --- src/formatter.rs | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/src/formatter.rs b/src/formatter.rs index fc3af5c57..4e71a18ef 100644 --- a/src/formatter.rs +++ b/src/formatter.rs @@ -172,10 +172,22 @@ fn config_colors(user_settings: &UserSettings) -> HashMap { result.insert(String::from("op-log tags"), String::from("white")); result.insert(String::from("op-log head id"), String::from("bright blue")); - result.insert(String::from("op-log head user"), String::from("bright yellow")); - result.insert(String::from("op-log head time"), String::from("bright magenta")); - result.insert(String::from("op-log head description"), String::from("bright white")); - result.insert(String::from("op-log head tags"), String::from("bright white")); + result.insert( + String::from("op-log head user"), + String::from("bright yellow"), + ); + result.insert( + String::from("op-log head time"), + String::from("bright magenta"), + ); + result.insert( + String::from("op-log head description"), + String::from("bright white"), + ); + result.insert( + String::from("op-log head tags"), + String::from("bright white"), + ); result.insert(String::from("concepts heading"), String::from("yellow"));