dotfiles/bash/.bash_profile

12 lines
228 B
Bash
Raw Normal View History

2019-01-28 02:46:29 +00:00
#
2019-05-04 16:43:16 +00:00
# $HOME/.bash_profile
2019-01-28 02:46:29 +00:00
#
2019-05-04 16:43:16 +00:00
[[ -f "$HOME/.bashrc" ]] && source $HOME/.bashrc
2019-01-28 02:46:29 +00:00
2019-05-04 16:43:16 +00:00
[[ -f "$HOME/.bash_local" ]] && source "$HOME/.bash_local"
2019-02-07 21:53:02 +00:00
2019-05-04 16:43:16 +00:00
[[ -f "$HOME/.profile" ]] && source "$HOME/.profile"
2019-08-26 14:11:21 +00:00
export PATH="$HOME/.cargo/bin:$PATH"