diff options
Diffstat (limited to '.zed/settings.json')
| -rw-r--r-- | .zed/settings.json | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/.zed/settings.json b/.zed/settings.json index 103cc28..7378109 100644 --- a/.zed/settings.json +++ b/.zed/settings.json @@ -4,14 +4,24 @@ "initialization_options": { "checkOnSave": true, "check": { "command": "clippy" }, + "files": { + "exclude": ["**/target/**", "**/.temp/**"] + }, "linkedProjects": [ ".run/Cargo.toml", "mingling_pathf/test/Cargo.toml", "arg_picker/Cargo.toml", - "arg_picker/test/Cargo.toml" + "arg_picker/test/Cargo.toml", + "mingling_cli/Cargo.toml" ], "cargo": { - "features": ["mingling_support"] + "features": [] + }, + "procMacro": { + "enable": true, + "attributes": { + "enable": true + } } } } |
