summaryrefslogtreecommitdiffstats
path: root/src/configs/gcloud.rs
blob: b392a98e353cd67777771cfe40f06ea7ff6bb00b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use crate::config::{ModuleConfig, RootModuleConfig};
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>,
}

impl<'a> RootModuleConfig<'a> for GcloudConfig<'a> {
    fn new() -> Self {
        GcloudConfig {
            format: "on [$symbol$account(\\($region\\))]($style) ",
            symbol: "☁️ ",
            style: "bold blue",
            disabled: false,
            region_aliases: HashMap::new(),
        }
    }
}