mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 15:34:40 +01:00
13 lines
228 B
Bash
13 lines
228 B
Bash
## bash_profile
|
|
|
|
# handle .profile too
|
|
. ~/.profile
|
|
|
|
# homebrew bash autocompletion
|
|
if [ -f `brew --prefix`/etc/bash_completion ]; then
|
|
. `brew --prefix`/etc/bash_completion
|
|
fi
|
|
|
|
# execute bashrc
|
|
[ -n "$BASH" ] && . ~/.bashrc
|
|
|