9 lines
187 B
Bash
9 lines
187 B
Bash
# ~/.bash_profile
|
|
#
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
# Load items that are common to bash and zsh
|
|
[[ -f ~/.shell_profile ]] && . ~/.shell_profile
|