summaryrefslogtreecommitdiffstats
path: root/src/configs/dotnet.rs
blob: b7cfe5c0d4330a88ef271ad24486d982f04dac01 (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;

#[derive(Clone, ModuleConfig)]
pub struct DotnetConfig<'a> {
    pub format: &'a str,
    pub symbol: &'a str,
    pub style: &'a str,
    pub heuristic: bool,
    pub disabled: bool,
}

impl<'a> RootModuleConfig<'a> for DotnetConfig<'a> {
    fn new() -> Self {
        DotnetConfig {
            format: "[$symbol($version )(🎯 $tfm )]($style)",
            symbol: "•NET ",
            style: "blue bold",
            heuristic: true,
            disabled: false,
        }
    }
}