dotfiles/bash/.bash_profile
2019-08-26 10:11:21 -04:00

12 lines
228 B
Bash

#
# $HOME/.bash_profile
#
[[ -f "$HOME/.bashrc" ]] && source $HOME/.bashrc
[[ -f "$HOME/.bash_local" ]] && source "$HOME/.bash_local"
[[ -f "$HOME/.profile" ]] && source "$HOME/.profile"
export PATH="$HOME/.cargo/bin:$PATH"