2021-03-15 10:40:52 +00:00
|
|
|
use crate::config::ModuleConfig;
|
2020-12-26 14:26:50 +00:00
|
|
|
|
2021-03-31 15:31:55 +00:00
|
|
|
use serde::Serialize;
|
2020-12-26 14:26:50 +00:00
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
2021-03-31 15:31:55 +00:00
|
|
|
#[derive(Clone, ModuleConfig, Serialize)]
|
2020-12-26 14:26:50 +00:00
|
|
|
pub struct KotlinConfig<'a> {
|
|
|
|
pub format: &'a str,
|
2021-04-29 21:22:20 +00:00
|
|
|
pub version_format: &'a str,
|
2020-12-26 14:26:50 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for KotlinConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2020-12-26 14:26:50 +00:00
|
|
|
KotlinConfig {
|
2021-01-21 22:01:30 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2021-04-29 21:22:20 +00:00
|
|
|
version_format: "v${raw}",
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|