From de84cfdf5aff0c55cb2ba0b0fe24ec1069e81c3b Mon Sep 17 00:00:00 2001 From: Daniel Szoke Date: Mon, 13 Apr 2026 11:45:58 +0200 Subject: [PATCH] meta: Add Zed editor settings --- .zed/settings.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .zed/settings.json diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000000..20a2c1fb59 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,14 @@ +{ + "lsp": { + "rust-analyzer": { + "initialization_options": { + "check": { + "command": "clippy" + }, + "cargo": { + "allFeatures": true + } + } + } + } +}