diff options
Diffstat (limited to '.zed/settings.json')
| -rw-r--r-- | .zed/settings.json | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..7378109 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,29 @@ +{ + "lsp": { + "rust-analyzer": { + "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", + "mingling_cli/Cargo.toml" + ], + "cargo": { + "features": [] + }, + "procMacro": { + "enable": true, + "attributes": { + "enable": true + } + } + } + } + } +} |
