scripts

Personal scripts that don't fit elsewhere

git clone https://code.pdelong.com/scripts.git

1#!/bin/sh
2
3# Installing rust-analyzer through rustup doesn't yet place the binary in
4# $HOME/.cargo/bin.  This shim uses rustup to find and execute the version of
5# rust-analyzer for the currently-selected toolchain.
6
7exec rustup run "$(rustup show active-toolchain | cut -d ' ' -f1)" rust-analyzer