mirror of
https://github.com/starship/starship.git
synced 2026-06-21 02:02:14 +07:00
b5e865ae7d
* chore: fix clippy warning for rust v1.83 * chore: fix clippy warning for nightly rust
31 lines
800 B
Rust
31 lines
800 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
|
#[cfg_attr(
|
|
feature = "config-schema",
|
|
derive(schemars::JsonSchema),
|
|
schemars(deny_unknown_fields)
|
|
)]
|
|
#[serde(default)]
|
|
pub struct GitMetricsConfig<'a> {
|
|
pub added_style: &'a str,
|
|
pub deleted_style: &'a str,
|
|
pub only_nonzero_diffs: bool,
|
|
pub format: &'a str,
|
|
pub disabled: bool,
|
|
pub ignore_submodules: bool,
|
|
}
|
|
|
|
impl Default for GitMetricsConfig<'_> {
|
|
fn default() -> Self {
|
|
GitMetricsConfig {
|
|
added_style: "bold green",
|
|
deleted_style: "bold red",
|
|
only_nonzero_diffs: true,
|
|
format: "([+$added]($added_style) )([-$deleted]($deleted_style) )",
|
|
disabled: true,
|
|
ignore_submodules: false,
|
|
}
|
|
}
|
|
}
|