diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-01-16 18:23:30 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-01-16 18:23:30 +0100 |
| commit | 6c3178986b258dc0b6b99784fcb1450a506c3609 (patch) | |
| tree | a57d8e600b917a3438a178440bb6bf6f0bfebf7f | |
| parent | 08bde1edf682052b7ea2f99ecf88c35eba25af33 (diff) | |
Add rust configuration to bash_profile
| -rw-r--r-- | .bash_profile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.bash_profile b/.bash_profile index 8983cb0..1bdacbc 100644 --- a/.bash_profile +++ b/.bash_profile @@ -96,6 +96,11 @@ if command -v go 1>/dev/null 2>&1; then export PATH="$HOME/go/bin:$PATH" fi +# ==== rust config +if command -v cargo 1>/dev/null 2>&1; then + source "$HOME/.cargo/env" +fi + # ==== rbenv config. if command -v rbenv 1>/dev/null 2>&1; then export PATH="$HOME/.rbenv/bin:$PATH" |
