Added project configuration for both vscode and zed

This commit is contained in:
2026-01-27 21:41:06 +02:00
parent 207947c095
commit e374e66719
2 changed files with 24 additions and 0 deletions

9
.vscode/settings.json vendored Normal file
View File

@@ -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"
]
}

15
.zed/settings.json Normal file
View File

@@ -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",
],
},
},
},
}