2022-03-26 09:42:19 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-05-21 16:43:13 +00:00
|
|
|
|
2022-03-26 09:42:19 +00:00
|
|
|
#[derive(Clone, Deserialize, Serialize)]
|
2022-09-09 12:59:38 +00:00
|
|
|
#[cfg_attr(
|
|
|
|
feature = "config-schema",
|
|
|
|
derive(schemars::JsonSchema),
|
|
|
|
schemars(deny_unknown_fields)
|
|
|
|
)]
|
2022-03-26 09:42:19 +00:00
|
|
|
#[serde(default)]
|
2020-05-21 16:43:13 +00:00
|
|
|
pub struct OCamlConfig<'a> {
|
2021-04-29 21:22:20 +00:00
|
|
|
pub format: &'a str,
|
|
|
|
pub version_format: &'a str,
|
2021-04-02 17:21:48 +00:00
|
|
|
pub global_switch_indicator: &'a str,
|
|
|
|
pub local_switch_indicator: &'a str,
|
2020-07-07 22:45:32 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for OCamlConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2020-05-21 16:43:13 +00:00
|
|
|
OCamlConfig {
|
2021-04-29 21:22:20 +00:00
|
|
|
format: "via [$symbol($version )(\\($switch_indicator$switch_name\\) )]($style)",
|
|
|
|
version_format: "v${raw}",
|
2021-04-02 17:21:48 +00:00
|
|
|
global_switch_indicator: "",
|
|
|
|
local_switch_indicator: "*",
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|