1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-11-16 01:57:07 +00:00
starship/src/configs/kotlin.rs

25 lines
598 B
Rust
Raw Normal View History

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