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,
|
2021-02-21 18:50:40 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2020-05-21 16:43:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> RootModuleConfig<'a> for OCamlConfig<'a> {
|
|
|
|
fn new() -> Self {
|
|
|
|
OCamlConfig {
|
2021-01-22 17:08:04 +00:00
|
|
|
format: "via [$symbol($version )]($style)",
|
2020-07-07 22:45:32 +00:00
|
|
|
symbol: "🐫 ",
|
|
|
|
style: "bold yellow",
|
2020-05-21 16:43:13 +00:00
|
|
|
disabled: false,
|
2021-02-21 18:50:40 +00:00
|
|
|
detect_extensions: vec!["opam", "ml", "mli", "re", "rei"],
|
|
|
|
detect_files: vec!["dune", "dune-project", "jbuild", "jbuild-ignore", ".merlin"],
|
|
|
|
detect_folders: vec!["_opam", "esy.lock"],
|
2020-05-21 16:43:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|