cleanup: run rustfmt on formatter (missed in recent commit)

This commit is contained in:
Martin von Zweigbergk 2021-10-27 21:25:45 -07:00
parent 98337e819d
commit 853b40cf18

View file

@ -172,10 +172,22 @@ fn config_colors(user_settings: &UserSettings) -> HashMap<String, String> {
result.insert(String::from("op-log tags"), String::from("white")); 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 id"), String::from("bright blue"));
result.insert(String::from("op-log head user"), String::from("bright yellow")); result.insert(
result.insert(String::from("op-log head time"), String::from("bright magenta")); String::from("op-log head user"),
result.insert(String::from("op-log head description"), String::from("bright white")); String::from("bright yellow"),
result.insert(String::from("op-log head tags"), String::from("bright white")); );
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")); result.insert(String::from("concepts heading"), String::from("yellow"));