mirror of
https://github.com/Llewellynvdm/starship.git
synced 2025-02-06 14:09:20 +00:00
Implements the Default trait for SegmentConfig to clean up construction of empty segments. Also adds a segment::new() function to ease construction of simple segments.
26 lines
668 B
Rust
26 lines
668 B
Rust
use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};
|
|
|
|
use ansi_term::{Color, Style};
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
pub struct DotnetConfig<'a> {
|
|
pub symbol: SegmentConfig<'a>,
|
|
pub version: SegmentConfig<'a>,
|
|
pub style: Style,
|
|
pub heuristic: bool,
|
|
pub disabled: bool,
|
|
}
|
|
|
|
impl<'a> RootModuleConfig<'a> for DotnetConfig<'a> {
|
|
fn new() -> Self {
|
|
DotnetConfig {
|
|
symbol: SegmentConfig::new("•NET "),
|
|
version: SegmentConfig::default(),
|
|
style: Color::Blue.bold(),
|
|
heuristic: true,
|
|
disabled: false,
|
|
}
|
|
}
|
|
}
|