mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-25 17:46:14 +01:00
11 lines
253 B
Bash
11 lines
253 B
Bash
## Add .local/bin to path
|
|
export PATH="${HOME}/.local/bin:${PATH}"
|
|
|
|
if [[ -d "${HOME}/.cargo/bin" ]]; then
|
|
export PATH="${HOME}/.cargo/bin:${PATH}"
|
|
fi
|
|
|
|
if [[ -d "/mnt/data3/Programs/bin" ]]; then
|
|
export PATH="/mnt/data3/Programs/bin:${PATH}"
|
|
fi
|