summaryrefslogtreecommitdiffstats
path: root/src/config/yaml.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/yaml.rs')
-rw-r--r--src/config/yaml.rs9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/config/yaml.rs b/src/config/yaml.rs
index e0c7e87..868411b 100644
--- a/src/config/yaml.rs
+++ b/src/config/yaml.rs
@@ -80,6 +80,7 @@ pub struct Shell {
#[derive(Deserialize, Debug)]
#[serde(default)]
+#[derive(Default)]
pub struct Client {
pub tealdeer: bool,
}
@@ -169,11 +170,3 @@ impl Default for Shell {
}
}
}
-
-impl Default for Client {
- fn default() -> Self {
- Self {
- tealdeer: false,
- }
- }
-}