2021-03-15 10:40:52 +00:00
|
|
|
use crate::config::ModuleConfig;
|
2020-08-03 21:30:20 +00:00
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
use std::collections::HashMap;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct GcloudConfig<'a> {
|
|
|
|
pub format: &'a str,
|
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
|
|
|
pub disabled: bool,
|
|
|
|
pub region_aliases: HashMap<String, &'a str>,
|
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for GcloudConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2020-08-03 21:30:20 +00:00
|
|
|
GcloudConfig {
|
|
|
|
format: "on [$symbol$account(\\($region\\))]($style) ",
|
|
|
|
symbol: "☁️ ",
|
|
|
|
style: "bold blue",
|
|
|
|
disabled: false,
|
|
|
|
region_aliases: HashMap::new(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|