starship 1.25.1

The minimal, blazing-fast, and infinitely customizable prompt for any shell! ☄🌌️
Documentation
use serde::{Deserialize, Serialize};

#[derive(Clone, Deserialize, Serialize)]
#[cfg_attr(
    feature = "config-schema",
    derive(schemars::JsonSchema),
    schemars(deny_unknown_fields)
)]
#[serde(default)]
pub struct EnvVarConfig<'a> {
    pub symbol: &'a str,
    pub style: &'a str,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub variable: Option<&'a str>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub default: Option<&'a str>,
    pub format: &'a str,
    pub disabled: bool,
    pub description: &'a str,
}

impl Default for EnvVarConfig<'_> {
    fn default() -> Self {
        Self {
            symbol: "",
            style: "black bold dimmed",
            variable: None,
            default: None,
            format: "with [$symbol$env_value]($style) ",
            disabled: false,
            description: "<env_var module>",
        }
    }
}