Skip to content

Commit 189c00f

Browse files
committed
fix rust-analyzer in vscode now that we use the pypi version of rustup
1 parent 9643b04 commit 189c00f

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

β€Ž.vscode/extensions.jsonβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
"tamasfe.even-better-toml",
88
"redhat.vscode-yaml",
99
"github.vscode-github-actions",
10+
"rust-lang.rust-analyzer",
1011
]
1112
}

β€Ž.vscode/settings.jsonβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,6 @@
6868
"tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji",
6969
"tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format",
7070
"tag:yaml.org,2002:python/object/apply:pymdownx.slugs.slugify mapping"
71-
]
71+
],
72+
"rust-analyzer.server.path": ".venv/bin/rust-analyzer"
7273
}

β€Žrust-toolchain.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
22
channel = "1.84"
3-
components = ["clippy", "rustfmt"]
3+
components = ["clippy", "rustfmt", "rust-analyzer"]

0 commit comments

Comments
Β (0)