1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-27 20:59:02 +00:00
starship/src/configs/lua.rs
Moritz Vetter 98b89b9432
perf(lua): Lazy eval lua (#2185)
* perf(lua): evaluate version lazily

* fix(lua): update format string

* test(lua): update tests

Co-authored-by: Moritz Vetter <mv@3yourmind.com>
2021-01-21 23:00:12 +01:00

25 lines
580 B
Rust

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,
}
}
}