Switch from vscode to zed and add crates folder

This commit is contained in:
2026-04-18 18:55:28 -06:00
parent ec9ec6d9a5
commit 66ee797cbb
8 changed files with 59 additions and 66 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"project_name": null,
"auto_install_extensions": {
"tombi": true,
"cargo-appraiser": true,
},
"languages": {
"TOML": {
"format_on_save": "on",
"formatter": { "language_server": { "name": "tombi" } },
},
},
"lsp": {
"rust-analyzer": {
"initialization_options": {
"imports": {
"granularity": { "enforce": true, "group": "module" },
"group": { "enable": true },
"merge": { "glob": false },
"preferNoStd": true,
},
"server": {
"extraEnv": {
"RUSTUP_TOOLCHAIN": "stable",
},
},
},
},
},
}