9 lines
357 B
JSON
9 lines
357 B
JSON
{
|
|
// Allow `rust-analyzer` and `cargo` to run simultaneously.
|
|
// This uses extra storage space, so consider commenting it out.
|
|
"rust-analyzer.cargo.targetDir": true,
|
|
// Display the directory of `mod.rs` files in the tab above the text editor.
|
|
"workbench.editor.customLabels.patterns": {
|
|
"**/mod.rs": "${dirname}/mod.rs"
|
|
},
|
|
}
|