From aa083b795d14ae0f5a18b7f3c40c2417bfb63bae Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Thu, 4 Sep 2025 10:47:46 -0700 Subject: [PATCH] chore: add rust-lang.rust-analyzer and vadimcn.vscode-lldb to the list of recommended extensions (#3172) `rust-lang.rust-analyzer` is clearly something all contributors should install. `vadimcn.vscode-lldb` is maybe debatable, but I think this is often better that print-debugging. --- .vscode/extensions.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index dd5dac52..8d6532aa 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,5 +1,11 @@ { "recommendations": [ + "rust-lang.rust-analyzer", "tamasfe.even-better-toml", + "vadimcn.vscode-lldb", + + // Useful if touching files in .github/workflows, though most + // contributors will not be doing that? + // "github.vscode-github-actions", ] }