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

use starship_module_config_derive::ModuleConfig;

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

impl<'a> RootModuleConfig<'a> for VagrantConfig<'a> {
    fn new() -> Self {
        VagrantConfig {
            format: "via [$symbol($version )]($style)",
            symbol: "⍱ ",
            style: "cyan bold",
            disabled: false,
        }
    }
}