2020-07-07 22:45:32 +00:00
|
|
|
use crate::config::{ModuleConfig, RootModuleConfig};
|
2020-04-27 10:09:42 +00:00
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct ErlangConfig<'a> {
|
2020-07-07 22:45:32 +00:00
|
|
|
pub format: &'a str,
|
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
2020-04-27 10:09:42 +00:00
|
|
|
pub disabled: bool,
|
2021-02-21 12:20:14 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2020-04-27 10:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> RootModuleConfig<'a> for ErlangConfig<'a> {
|
|
|
|
fn new() -> Self {
|
|
|
|
ErlangConfig {
|
2021-01-20 17:46:26 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2020-10-13 22:01:35 +00:00
|
|
|
symbol: " ",
|
2020-07-07 22:45:32 +00:00
|
|
|
style: "bold red",
|
2020-04-27 10:09:42 +00:00
|
|
|
disabled: false,
|
2021-02-21 12:20:14 +00:00
|
|
|
detect_extensions: vec![],
|
|
|
|
detect_files: vec!["rebar.config", "erlang.mk"],
|
|
|
|
detect_folders: vec![],
|
2020-04-27 10:09:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|