Skip to content

Instantly share code, notes, and snippets.

@mmontag
Created July 11, 2020 02:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mmontag/7874848485753be0a3c4fdf9e0cdbda9 to your computer and use it in GitHub Desktop.
Save mmontag/7874848485753be0a3c4fdf9e0cdbda9 to your computer and use it in GitHub Desktop.
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
if [ -f ~/.profile ]; then
source ~/.profile
fi
# Bash completion - March 30, 2018
[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" # Load RVM into a shell session *as a function*
test -e "${HOME}/.iterm2_shell_integration.bash" && source "${HOME}/.iterm2_shell_integration.bash"
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/montag/google-cloud-sdk/path.bash.inc' ]; then source '/Users/montag/google-cloud-sdk/path.bash.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/montag/google-cloud-sdk/completion.bash.inc' ]; then source '/Users/montag/google-cloud-sdk/completion.bash.inc'; fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment