fix(zsh): keep both installation options for Rust

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2024-11-28 09:39:43 +01:00
parent 6fe8c6196e
commit 6ae61103c4
Signed by: mfocko
SSH key fingerprint: SHA256:icm0fIOSJUpy5+1x23sfr+hLtF9UhY8VpMC7H4WFJP8

View file

@ -53,7 +53,12 @@ fi # added by Nix installer
# export RUSTUP_HOME=/opt/rustup
# export CARGO_HOME=/opt/cargo
# export PATH=/opt/cargo/bin:$PATH
export PATH=~/.cargo/bin:$PATH
# For user-space installation
# export PATH=~/.cargo/bin:$PATH
# For /opt installation
# export PATH=/opt/cargo/bin:$PATH
# [[ -s "/opt/cargo/env" ]] && source /opt/cargo/env
### Go ###