mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-16 18:15:16 +00:00
30 lines
739 B
Rust
30 lines
739 B
Rust
|
use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};
|
||
|
|
||
|
use ansi_term::{Color, Style};
|
||
|
use starship_module_config_derive::ModuleConfig;
|
||
|
|
||
|
#[derive(Clone, ModuleConfig)]
|
||
|
pub struct CondaConfig<'a> {
|
||
|
pub symbol: SegmentConfig<'a>,
|
||
|
pub environment: SegmentConfig<'a>,
|
||
|
pub style: Style,
|
||
|
pub disabled: bool,
|
||
|
}
|
||
|
|
||
|
impl<'a> RootModuleConfig<'a> for CondaConfig<'a> {
|
||
|
fn new() -> Self {
|
||
|
CondaConfig {
|
||
|
symbol: SegmentConfig {
|
||
|
value: "C ",
|
||
|
style: None,
|
||
|
},
|
||
|
environment: SegmentConfig {
|
||
|
value: "",
|
||
|
style: None,
|
||
|
},
|
||
|
style: Color::Green.bold(),
|
||
|
disabled: false,
|
||
|
}
|
||
|
}
|
||
|
}
|