Files
dotfiles/zsh/rust.zsh
2019-03-05 00:22:18 +00:00

17 lines
252 B
Bash

#
# Rust environment setup.
#
# Rustup
if [ -d "$HOME/.cargo/bin" ]; then
path_prepend "$HOME/.cargo/bin"
fi
install_rust_global_packages() {
rustup component add \
rls \
rust-analysis \
rust-src \
rustfmt \
}