mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-15 09:44:22 +00:00
33 lines
938 B
Rust
33 lines
938 B
Rust
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
|
#[cfg_attr(feature = "config-schema", derive(schemars::JsonSchema))]
|
|
#[serde(default)]
|
|
pub struct GitBranchConfig<'a> {
|
|
pub format: &'a str,
|
|
pub symbol: &'a str,
|
|
pub style: &'a str,
|
|
pub truncation_length: i64,
|
|
pub truncation_symbol: &'a str,
|
|
pub only_attached: bool,
|
|
pub always_show_remote: bool,
|
|
pub ignore_branches: Vec<&'a str>,
|
|
pub disabled: bool,
|
|
}
|
|
|
|
impl<'a> Default for GitBranchConfig<'a> {
|
|
fn default() -> Self {
|
|
GitBranchConfig {
|
|
format: "on [$symbol$branch(:$remote_branch)]($style) ",
|
|
symbol: " ",
|
|
style: "bold purple",
|
|
truncation_length: std::i64::MAX,
|
|
truncation_symbol: "…",
|
|
only_attached: false,
|
|
always_show_remote: false,
|
|
ignore_branches: vec![],
|
|
disabled: false,
|
|
}
|
|
}
|
|
}
|