Skip to content

Instantly share code, notes, and snippets.

@wogsland
Last active February 26, 2020 10:47
Show Gist options
  • Save wogsland/6ec70768770edb01018c to your computer and use it in GitHub Desktop.
Save wogsland/6ec70768770edb01018c to your computer and use it in GitHub Desktop.
OS X .profile
# The next line updates PATH for the Google Cloud SDK.
#source '/Users/wogsland/Projects/google-cloud-sdk/path.bash.inc'
# The next line enables shell command completion for gcloud.
#source '/Users/wogsland/Projects/google-cloud-sdk/completion.bash.inc'
## Aliases
alias ls='ls -la'
alias grep='grep -r -n'
alias composer='php ~/composer.phar'
## Howdy
echo "Buenos dias!"
# AWS
export PATH=$PATH:~/Library/Python/2.7/bin
# Ruby
export PATH=$PATH:/Users/wogsland/.gem/ruby/2.3.0/bin
# Setting PATH for Python 3.6
# The original version is saved in .profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
export PATH
# Rust
export PATH="$HOME/.cargo/bin:$PATH"
# Go
export PATH="$HOME/go/bin:$PATH"
export GOPATH="$HOME/go"
# direnv
eval "$(direnv hook bash)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment