12 lines
393 B
Bash
12 lines
393 B
Bash
if [[ $(uname -m) == 'arm64' ]]; then
|
|
# Homebrew has a different location on M series devices
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
fi
|
|
|
|
export PATH="/usr/local/opt/grep/libexec/gnubin:$PATH:${HOME}/.local/bin:/usr/local/sbin:${HOME}/.local/share/gem/ruby/2.0.0/bin:/usr/local/bin"
|
|
export ANDROID_SDK_ROOT=/Users/$USER/Library/Android/sdk
|
|
|
|
eval "$(rbenv init - zsh)"
|
|
|
|
alias date=gdate;
|