dots/.bash_profile
Conner McCall 279810fd56 add aws alias
add yarn to gitignore
2020-06-20 08:39:33 -05:00

29 lines
999 B
Bash

export PATH="$HOME/bin:$PATH";
if [ -f /usr/local/share/liquidprompt ]; then
. /usr/local/share/liquidprompt
fi
export PATH="$PATH:/Applications/DevDesktop/tools"
# The next line updates PATH for the Google Cloud SDK.
if [ -f '/Users/conner/bin/google-cloud-sdk/path.bash.inc' ]; then . '/Users/conner/bin/google-cloud-sdk/path.bash.inc'; fi
# The next line enables shell command completion for gcloud.
if [ -f '/Users/conner/bin/google-cloud-sdk/completion.bash.inc' ]; then . '/Users/conner/bin/google-cloud-sdk/completion.bash.inc'; fi
HISTFILESIZE=15000
test -e "${HOME}/.iterm2_shell_integration.bash" && source "${HOME}/.iterm2_shell_integration.bash"
wttr()
{
# change Paris to your default location
local request="wttr.in/${1-St+Paul+MN}"
[ "$(tput cols)" -lt 125 ] && request+='?n'
curl -H "Accept-Language: ${LANG%_*}" --compressed "$request"
}
. ~/bin/awsAliases
alias awsall="_awsListAll"
alias awsp="_awsSwitchProfile"
alias awswho="aws configure list"