9 lines
150 B
Bash
9 lines
150 B
Bash
if [ -n "$PS1" ]
|
|
then
|
|
source ~/.bash_profile;
|
|
else
|
|
[ -r ~/.path ] && [ -f ~/.path ] && source ~/.path;
|
|
fi
|
|
|
|
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|