summaryrefslogtreecommitdiffstats
path: root/src/configs/lua.rs
blob: 6ba8593f9a577e208250804d6f4095321bc7f6bb (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 LuaConfig<'a> {
    pub format: &'a str,
    pub symbol: &'a str,
    pub style: &'a str,
    pub lua_binary: &'a str,
    pub disabled: bool,
}

impl<'a> RootModuleConfig<'a> for LuaConfig<'a> {
    fn new() -> Self {
        LuaConfig {
            format: "via [$symbol($version )]($style)",
            symbol: "🌙 ",
            style: "bold blue",
            lua_binary: "lua",
            disabled: false,
        }
    }
}