2020-12-26 14:26:50 +00:00
|
|
|
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 {
|
2021-01-21 22:01:30 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2020-12-26 14:26:50 +00:00
|
|
|
symbol: "🅺 ",
|
|
|
|
style: "bold blue",
|
|
|
|
kotlin_binary: "kotlin",
|
|
|
|
disabled: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|