summaryrefslogtreecommitdiffstats
path: root/src/configs/singularity.rs
blob: 4ed19242627b13e9a40762fa057e9eb5ca97672a (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
use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};

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

#[derive(Clone, ModuleConfig)]
pub struct SingularityConfig<'a> {
    pub symbol: SegmentConfig<'a>,
    pub label: &'a str,
    pub prefix: &'a str,
    pub suffix: &'a str,
    pub style: Style,
    pub disabled: bool,
}

impl<'a> RootModuleConfig<'a> for SingularityConfig<'a> {
    fn new() -> Self {
        SingularityConfig {
            symbol: SegmentConfig::default(),
            label: "",
            prefix: "[",
            suffix: "]",
            style: Color::Blue.bold().dimmed(),
            disabled: false,
        }
    }
}