aboutsummaryrefslogtreecommitdiff
path: root/.zed/settings.json
blob: 727f95537758a424c78ddb40ffe0dba748aa8f4a (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
{
  "lsp": {
    "rust-analyzer": {
      "initialization_options": {
        "checkOnSave": true,
        "check": { "command": "clippy" },
        "linkedProjects": [
          ".run/Cargo.toml",
          "mingling_pathf/test/Cargo.toml",
          "arg_picker/Cargo.toml",
          "arg_picker/test/Cargo.toml",
        ],
        "cargo": {
          "features": [
            "structural_renderer",
            "mingling_support",
            "all_serde_fmt",
            "picker",
            "parser",
            "comp",
          ],
        },
      },
    },
  },
}