diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-07-18 04:34:37 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-07-18 04:34:37 +0800 |
| commit | e525ad90af0295e7f6b4f16367ba12a6d88abfb4 (patch) | |
| tree | 12806777875afd9f7aa52aa7e9d2eaf19b1da5f3 /.zed/settings.json | |
| parent | 056d9579125dba1fccb91f191e1ff474ca6992f3 (diff) | |
chore: add picker, parser, and comp features to rust-analyzer config
Diffstat (limited to '.zed/settings.json')
| -rw-r--r-- | .zed/settings.json | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/.zed/settings.json b/.zed/settings.json index 103cc28..40eca98 100644 --- a/.zed/settings.json +++ b/.zed/settings.json @@ -1,19 +1,19 @@ { - "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": ["mingling_support"] - } - } - } - } + "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": ["mingling_support", "picker", "parser", "comp"], + }, + }, + }, + }, } |
