mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-15 17:47:13 +00:00
00afc82049
* perf(kotlin): evaluate version lazily * fix(kotlin): update format string; update tests Co-authored-by: Moritz Vetter <mv@3yourmind.com>
25 lines
598 B
Rust
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,
|
|
}
|
|
}
|
|
}
|