Last active
October 6, 2017 18:14
-
-
Save premnirmal/5905930 to your computer and use it in GitHub Desktop.
my .zshrc file
This file contains 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
# Path to your oh-my-zsh configuration. | |
ZSH=$HOME/.oh-my-zsh | |
alias git=hub | |
PATH=$PATH:/usr/local/bin | |
# android path (installed via homebrew) | |
PATH=$PATH:/usr/local/Cellar/android-sdk/24.4.1_1/platform-tools | |
PATH=$PATH:/usr/local/Cellar/android-sdk/24.4.1_1/tools | |
PATH=$PATH:/usr/local/Cellar/android-sdk/24.4.1_1/ndk | |
export PATH | |
ANDROID_HOME=/usr/local/Cellar/android-sdk/24.4.1_1/ | |
ANDROID_SDK_ROOT=/usr/local/Cellar/android-sdk/24.4.1_1/ | |
export ANDROID_HOME | |
export ANDROID_SDK_ROOT | |
ZSH_THEME="robbyrussell" | |
export EDITOR="Emacs" | |
COMPLETION_WAITING_DOTS="true" | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
#export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting | |
source ~/.profile | |
export JAVA_HOME=$(/usr/libexec/java_home) | |
export JVM="/Library/Java/JavaVirtualMachines" | |
export _JAVA_OPTIONS=-Dapple.awt.UIElement=true | |
export STUDIO_JDK="${JVM}/jdk1.8.0_101.jdk" | |
export TERM="xterm-256color" | |
export PYTHONPATH=/usr/local/var/pyenv/shims/python | |
export PYENV_ROOT=/usr/local/var/pyenv | |
if which pyenv > /dev/null; then eval "$(pyenv init -)"; fi | |
if which pyenv-virtualenv-init > /dev/null; then eval "$(pyenv virtualenv-init -)"; fi | |
pyenv virtualenvwrapper | |
eval "$(thefuck --alias)" | |
[ -s "/Users/prem/.scm_breeze/scm_breeze.sh" ] && source "/Users/prem/.scm_breeze/scm_breeze.sh" | |
eval "$(rbenv init -)" | |
eval "$(nodenv init -)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment