suppress error when rustup/cargo not available

This commit is contained in:
Joel Beckmeyer 2023-07-27 08:53:50 -04:00
parent 6a34659052
commit c33b936f84

View File

@ -1,6 +1,6 @@
# icky, but necessary since this might inject the needed XDG vars # icky, but necessary since this might inject the needed XDG vars
. "$HOME/.config/environment.local" 2>/dev/null . "$HOME/.config/environment.local" 2>/dev/null
. "$XDG_DATA_HOME/cargo/env" . "$XDG_DATA_HOME/cargo/env" 2>/dev/null
# editor # editor
export EDITOR=/usr/bin/nvim export EDITOR=/usr/bin/nvim