bin/setup-rust

Wed, 05 Apr 2023 01:26:04 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Wed, 05 Apr 2023 01:26:04 -0500
changeset 1097
7df98d33285d
parent 723
9d9fecc3ea30
permissions
-rwxr-xr-x

actually set up lsp snippets

#!/bin/bash
set -eu -o pipefail

if rustup update; then
  exit
fi

curl https://sh.rustup.rs -sSf | sh
source ~/.cargo/env
rustup component add rls rustfmt

mercurial