From f60cc497d4994bcb051044286da297104adbd978 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Thu, 4 Dec 2025 09:39:38 -0300 Subject: [PATCH] Add VS Code settings for rust-analyzer --- .gitignore | 1 - .vscode/settings.json | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index afd9964..b23c1c2 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,6 @@ # IDE .idea/ -.vscode/ *.swp *.swo *~ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..54a0aa8 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "rust-analyzer.linkedProjects": [ + "Cargo.toml" + ] +}