Files
dotfiles/.bash_profile
2026-02-23 12:49:59 -06:00

17 lines
443 B
Bash

. ~/.bashrc
[[ -r "/opt/homebrew/etc/profile.d/bash_completion.sh" ]] && . "/opt/homebrew/etc/profile.d/bash_completion.sh"
test -e "${HOME}/.iterm2_shell_integration.bash" && source "${HOME}/.iterm2_shell_integration.bash" || true
export BASH_SILENCE_DEPRECATION_WARNING=1
eval "$(/opt/homebrew/bin/brew shellenv)"
export DOCKER_DEFAULT_PLATFORM=linux/amd64
# Load .bashrc if it exists
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi