From 07857f1d0a213b7f2b5d511e8a9da9df07de8d8d Mon Sep 17 00:00:00 2001 From: zxq5 Date: Mon, 20 Oct 2025 01:36:07 +0100 Subject: [PATCH] zed config for project --- .zed/settings.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .zed/settings.json diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..61c976d --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,15 @@ +// Folder-specific settings +// +// For a full list of overridable settings, and general information on folder-specific settings, +// see the documentation: https://zed.dev/docs/configuring-zed#settings-files +{ + "lsp": { + "rust-analyzer": { + "initialization_options": { + "check": { + "command": "clippy" // rust-analyzer.check.command (default: "check") + } + } + } + } +}