2020-07-07 22:45:32 +00:00
|
|
|
use crate::config::{ModuleConfig, RootModuleConfig};
|
2020-05-21 16:43:13 +00:00
|
|
|
|
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
|
|
|
#[derive(Clone, ModuleConfig)]
|
|
|
|
pub struct OCamlConfig<'a> {
|
2020-07-07 22:45:32 +00:00
|
|
|
pub format: &'a str,
|
|
|
|
pub symbol: &'a str,
|
|
|
|
pub style: &'a str,
|
2020-05-21 16:43:13 +00:00
|
|
|
pub disabled: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> RootModuleConfig<'a> for OCamlConfig<'a> {
|
|
|
|
fn new() -> Self {
|
|
|
|
OCamlConfig {
|
2020-07-07 22:45:32 +00:00
|
|
|
format: "via [$symbol$version]($style) ",
|
|
|
|
symbol: "🐫 ",
|
|
|
|
style: "bold yellow",
|
2020-05-21 16:43:13 +00:00
|
|
|
disabled: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|