2019-10-05 18:25:25 +00:00
|
|
|
use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};
|
|
|
|
|
|
|
|
use ansi_term::{Color, Style};
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct CondaConfig<'a> {
|
2019-12-09 17:59:02 +00:00
|
|
|
pub truncation_length: usize,
|
2019-10-05 18:25:25 +00:00
|
|
|
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 {
|
2019-12-09 17:59:02 +00:00
|
|
|
truncation_length: 1,
|
2019-10-05 18:25:25 +00:00
|
|
|
symbol: SegmentConfig {
|
|
|
|
value: "C ",
|
|
|
|
style: None,
|
|
|
|
},
|
|
|
|
environment: SegmentConfig {
|
|
|
|
value: "",
|
|
|
|
style: None,
|
|
|
|
},
|
|
|
|
style: Color::Green.bold(),
|
|
|
|
disabled: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|