mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-16 01:57:07 +00:00
28 lines
778 B
Rust
28 lines
778 B
Rust
|
use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};
|
||
|
|
||
|
use ansi_term::{Color, Style};
|
||
|
use starship_module_config_derive::ModuleConfig;
|
||
|
|
||
|
#[derive(Clone, ModuleConfig)]
|
||
|
pub struct HgBranchConfig<'a> {
|
||
|
pub symbol: SegmentConfig<'a>,
|
||
|
pub truncation_length: i64,
|
||
|
pub truncation_symbol: &'a str,
|
||
|
pub branch_name: SegmentConfig<'a>,
|
||
|
pub style: Style,
|
||
|
pub disabled: bool,
|
||
|
}
|
||
|
|
||
|
impl<'a> RootModuleConfig<'a> for HgBranchConfig<'a> {
|
||
|
fn new() -> Self {
|
||
|
HgBranchConfig {
|
||
|
symbol: SegmentConfig::new(" "),
|
||
|
truncation_length: std::i64::MAX,
|
||
|
truncation_symbol: "…",
|
||
|
branch_name: SegmentConfig::default(),
|
||
|
style: Color::Purple.bold(),
|
||
|
disabled: true,
|
||
|
}
|
||
|
}
|
||
|
}
|