From 4d0b4089dce1ebedd9c307ce60b8bb1336c62238 Mon Sep 17 00:00:00 2001 From: NotLebedev Date: Thu, 31 Jul 2025 11:33:18 +0300 Subject: [PATCH] Add zed editor config files --- .zed/settings.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .zed/settings.json diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..55a15a9 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,13 @@ +// 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": { + "linkedProjects": ["./lib/patcher/Cargo.toml"] + } + } + } +}