We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d066891 commit e99e4eeCopy full SHA for e99e4ee
src/config.rs
@@ -34,3 +34,22 @@ pub struct ConfigOptions {
34
#[serde(default)]
35
pub nerd_fonts: bool,
36
}
37
+
38
+impl Default for ConfigOptions {
39
+ fn default() -> Self {
40
+ Self {
41
+ disabled_fields: vec![],
42
+ no_title: false,
43
+ number_of_authors: 3usize,
44
+ number_of_languages: 6usize,
45
+ number_of_file_churns: 3usize,
46
+ no_merges: false,
47
+ include_hidden: false,
48
+ iso_time: false,
49
+ number_separator: NumberSeparator::default(),
50
+ no_bold: false,
51
+ true_color: When::Auto,
52
+ nerd_fonts: false,
53
+ }
54
55
+}
0 commit comments