summaryrefslogtreecommitdiffstats
path: root/src/configs/kubernetes.rs
blob: 733919cd10f103e7acbe73d0c782806cfa924a40 (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
25
26
27
28
29
30
31
32
33
34
use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};

use ansi_term::{Color, Style};
use starship_module_config_derive::ModuleConfig;

#[derive(Clone, ModuleConfig)]
pub struct KubernetesConfig<'a> {
    pub symbol: SegmentConfig<'a>,
    pub context: SegmentConfig<'a>,
    pub namespace: SegmentConfig<'a>,
    pub style: Style,
    pub disabled: bool,
}

impl<'a> RootModuleConfig<'a> for KubernetesConfig<'a> {
    fn new() -> Self {
        KubernetesConfig {
            symbol: SegmentConfig {
                value: "☸ ",
                style: None,
            },
            context: SegmentConfig {
                value: "",
                style: None,
            },
            namespace: SegmentConfig {
                value: "",
                style: None,
            },
            style: Color::Cyan.bold(),
            disabled: true,
        }
    }
}