mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-18 02:04:19 +00:00
cleanup: run rustfmt on formatter (missed in recent commit)
This commit is contained in:
parent
98337e819d
commit
853b40cf18
1 changed files with 16 additions and 4 deletions
|
@ -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 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"));
|
||||
|
||||
|
|
Loading…
Reference in a new issue