Release 0.2.0
[tutil.git] / provision.sh
blob143f5660c3ef267aec06fa8640e0cabd8b286d56
1 #!/usr/bin/env bash
3 # Install required packages.
4 echo 'Installing packages...'
5 pkg update &> /dev/null
6 pkg install -y 'fish' 'neovim' 'rust' 'cargo' &> /dev/null
8 # Install Rustup.
9 #echo 'Installing Rustup...'
10 #curl https://sh.rustup.rs -sSf | sh &> /dev/null
11 #export PATH="$HOME/.cargo/bin:$PATH"
13 # Install stable and nightly Rust.
14 #echo 'Installing stable and nightly Rust...'
15 #rustup update 'stable' &> /dev/null
16 #rustup update 'nightly' &> /dev/null
18 #echo 'Setting default toolchain to stable...'
19 #rustup default 'stable'