2021-03-15 10:40:52 +00:00
|
|
|
use crate::config::ModuleConfig;
|
2020-07-29 15:36:49 +00:00
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct SwiftConfig<'a> {
|
|
|
|
pub format: &'a str,
|
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
|
|
|
pub disabled: bool,
|
2021-02-21 17:01:31 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2020-07-29 15:36:49 +00:00
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for SwiftConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2020-07-29 15:36:49 +00:00
|
|
|
SwiftConfig {
|
2021-01-19 04:42:28 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2020-07-29 15:36:49 +00:00
|
|
|
symbol: "🐦 ",
|
|
|
|
style: "bold 202",
|
|
|
|
disabled: false,
|
2021-02-21 17:01:31 +00:00
|
|
|
detect_extensions: vec!["swift"],
|
|
|
|
detect_files: vec!["Package.swift"],
|
|
|
|
detect_folders: vec![],
|
2020-07-29 15:36:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|