# Silence warning about change in default shell
# https://support.apple.com/en-gb/HT208050
export BASH_SILENCE_DEPRECATION_WARNING=1
# brew install bash-completion
[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && \
    . "/usr/local/etc/profile.d/bash_completion.sh"

# Default Python
PYTHON_EXE=python3
PIP_EXE=pip3

# Put homebrew ruby first on PATH
export PATH=/usr/local/opt/ruby/bin:$PATH
# And user Gem path:
export PATH=$HOME/.gem/ruby/2.7.0/bin:$PATH

# Source personal definitions
if [ -f ~/.bash_personal ]; then
    . ~/.bash_personal
fi
