use crate::config::ModuleConfig; use starship_module_config_derive::ModuleConfig; use std::collections::HashMap; #[derive(Clone, ModuleConfig)] pub struct AwsConfig<'a> { pub format: &'a str, pub symbol: &'a str, pub style: &'a str, pub disabled: bool, pub region_aliases: HashMap, } impl<'a> Default for AwsConfig<'a> { fn default() -> Self { AwsConfig { format: "on [$symbol($profile )(\\($region\\) )]($style)", symbol: "☁️ ", style: "bold yellow", disabled: false, region_aliases: HashMap::new(), } } }