mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-15 01:34:10 +00:00
24 lines
624 B
Rust
24 lines
624 B
Rust
|
use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};
|
||
|
|
||
|
use ansi_term::{Color, Style};
|
||
|
use starship_module_config_derive::ModuleConfig;
|
||
|
|
||
|
#[derive(Clone, ModuleConfig)]
|
||
|
pub struct PureScriptConfig<'a> {
|
||
|
pub symbol: SegmentConfig<'a>,
|
||
|
pub version: SegmentConfig<'a>,
|
||
|
pub style: Style,
|
||
|
pub disabled: bool,
|
||
|
}
|
||
|
|
||
|
impl<'a> RootModuleConfig<'a> for PureScriptConfig<'a> {
|
||
|
fn new() -> Self {
|
||
|
PureScriptConfig {
|
||
|
symbol: SegmentConfig::new("<=> "),
|
||
|
version: SegmentConfig::default(),
|
||
|
style: Color::White.bold(),
|
||
|
disabled: false,
|
||
|
}
|
||
|
}
|
||
|
}
|