From e374e66719f1b44641fa67f3ebad019585098ea9 Mon Sep 17 00:00:00 2001 From: Jarno Date: Tue, 27 Jan 2026 21:41:06 +0200 Subject: [PATCH] Added project configuration for both vscode and zed --- .vscode/settings.json | 9 +++++++++ .zed/settings.json | 15 +++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 .vscode/settings.json create mode 100644 .zed/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..c84e785 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,9 @@ +{ + "rust-analyzer.linkedProjects": [ + "Cargo.toml", + "crates/daemon/Cargo.toml", + "crates/shared/Cargo.toml", + "frontend/Cargo.toml", + "frontend/src-tauri/Cargo.toml" + ] +} \ No newline at end of file diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..dee2d66 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,15 @@ +{ + "lsp": { + "rust-analyzer": { + "initialization_options": { + "linkedProjects": [ + "Cargo.toml", + "crates/daemon/Cargo.toml", + "crates/shared/Cargo.toml", + "frontend/Cargo.toml", + "frontend/src-tauri/Cargo.toml", + ], + }, + }, + }, +}