summaryrefslogtreecommitdiffstats
path: root/src/configs/nodejs.rs
blob: 5faee3fe0602ff13123cf11fa186a8001f806b4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use crate::config::{ModuleConfig, RootModuleConfig, SegmentConfig};

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

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

impl<'a> RootModuleConfig<'a> for NodejsConfig<'a> {
    fn new() -> Self {
        NodejsConfig {
            symbol: SegmentConfig::new("⬢ "),
            style: Color::Green.bold(),
            disabled: false,
        }
    }
}