Created
July 11, 2020 02:48
-
-
Save mmontag/7874848485753be0a3c4fdf9e0cdbda9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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