1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-11-15 17:47:13 +00:00
starship/src/configs/kotlin.rs
Moritz Vetter 00afc82049
perf(kotlin): Lazy eval kotlin (#2186)
* perf(kotlin): evaluate version lazily

* fix(kotlin): update format string; update tests

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

25 lines
598 B
Rust

use crate::config::{ModuleConfig, RootModuleConfig};
use starship_module_config_derive::ModuleConfig;
#[derive(Clone, ModuleConfig)]
pub struct KotlinConfig<'a> {
pub format: &'a str,
pub symbol: &'a str,
pub style: &'a str,
pub kotlin_binary: &'a str,
pub disabled: bool,
}
impl<'a> RootModuleConfig<'a> for KotlinConfig<'a> {
fn new() -> Self {
KotlinConfig {
format: "via [$symbol($version )]($style)",
symbol: "🅺 ",
style: "bold blue",
kotlin_binary: "kotlin",
disabled: false,
}
}
}