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,
|
2021-02-21 18:56:48 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2020-12-26 14:26:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2021-02-21 18:56:48 +00:00
|
|
|
detect_extensions: vec!["kt", "kts"],
|
|
|
|
detect_files: vec![],
|
|
|
|
detect_folders: vec![],
|
2020-12-26 14:26:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|