aboutsummaryrefslogtreecommitdiff
path: root/helix-loader/src/config.rs
blob: 259b1318ea00bc3b2f32e26752239bee5de69bee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/// Default built-in languages.toml.
pub fn default_lang_config() -> toml::Value {
    toml::from_slice(include_bytes!("../../languages.toml"))
        .expect("Could not parse built-in languages.toml to valid toml")
}

/// User configured languages.toml file, merged with the default config.
pub fn user_lang_config() -> Result<toml::Value, toml::de::Error> {
    let config = crate::local_config_dirs()
        .into_iter()
        .chain([crate::config_dir()].into_iter())
        .map(|path| path.join("languages.toml"))
        .filter_map(|file| {
            std::fs::read(&file)
                .map(|config| toml::from_slice(&config))
                .ok()
        })
        .collect::<Result<Vec<_>, _>>()?
        .into_iter()
        .chain([default_lang_config()].into_iter())
        .fold(toml::Value::Table(toml::value::Table::default()), |a, b| {
            // combines for example
            // b:
            //   [[language]]
            //   name = "toml"
            //   language-server = { command = "taplo", args = ["lsp", "stdio"] }
            //
            // a:
            //   [[language]]
            //   language-server = { command = "/usr/bin/taplo" }
            //
            // into:
            //   [[language]]
            //   name = "toml"
            //   language-server = { command = "/usr/bin/taplo" }
            //
            // thus it overrides the third depth-level of b with values of a if they exist, but otherwise merges their values
            crate::merge_toml_values(b, a, 3)
        });

    Ok(config)
}