starship 0.37.0

The minimal, blazing-fast, and infinitely customizable prompt for any shell! ☄🌌️
Documentation
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 truncation_length: usize,
    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 {
            truncation_length: 1,
            symbol: SegmentConfig {
                value: "C ",
                style: None,
            },
            environment: SegmentConfig {
                value: "",
                style: None,
            },
            style: Color::Green.bold(),
            disabled: false,
        }
    }
}