dotfiles/.profile
2020-11-18 00:51:00 +01:00

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