Reputation: 16106
When running hx --health rust
I do not have any check passing for rust.
How can I configure rust to work with Helix editor on Windows?
Upvotes: 0
Views: 1119
Reputation: 16106
On a machine using Windows 11 and having the command line installer scoop installed, I have managed to configure rust for Helix easily following the next steps:
Install rustup-gnu (not just rustup):
scoop install main/rustup-gnu
Install llvm:
scoop install main/llvm
Check Helix health for rust lang:
hx --health rust
Check the ouput looks like:
Configured language server: rust-analyzer
Binary for language server: C:\Users\<username>\scoop\apps\rustup-gnu\current\.cargo\bin\rust-analyzer.exe
Configured debug adapter: lldb-vscode
Binary for debug adapter: C:\Users\<username>\scoop\apps\llvm\current\bin\lldb-vscode.exe
Highlight queries: ✓
Textobject queries: ✓
Indent queries: ✓
Upvotes: 1