diff options
Diffstat (limited to '.path')
| -rw-r--r-- | .path | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,31 @@ +#!/bin/bash + +export PATH="/usr/local/sbin:$PATH" +export GOPATH=~/go + +# Golang +export PATH="$PATH:$GOPATH/bin" + +# Volta +export VOLTA_HOME="$HOME/.volta" +export PATH="$VOLTA_HOME/bin:$PATH" + +# Add yarn packages to PATH +export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH" + +# The next line updates PATH for the Google Cloud SDK. +export CLOUDSDK_PYTHON="/usr/local/opt/python@3.8/libexec/bin/python" + +if [ -f "/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc" ]; then + source "/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/path.zsh.inc" +fi + +if [ -f "/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc" ]; then + source "/usr/local/Caskroom/google-cloud-sdk/latest/google-cloud-sdk/completion.bash.inc" +fi + +# The next line updates PATH for Netlify's Git Credential Helper. +if [ -f "$HOME/.netlify/helper/path.zsh.inc" ]; then source "$HOME/.netlify/helper/path.zsh.inc"; fi + +# Add VSCode to PATH +export PATH="$PATH:/Applications/Visual Studio Code.app/Contents/Resources/app/bin"
\ No newline at end of file |
