Last active
July 29, 2016 11:41
-
-
Save oscargicast/7437e3c71e432f28cc72 to your computer and use it in GitHub Desktop.
zsh_profile
This file contains hidden or 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
# import aliases | |
if [ -f ~/.zsh_aliases ]; then | |
. ~/.zsh_aliases | |
fi | |
# set color | |
export TERM=xterm-256color | |
# print welcome message | |
python ~/.zsh/shascii/welcome.py | |
# virtualenvwrapper | |
export WORKON_HOME=$HOME/.virtualenvs | |
export PROJECT_HOME=$HOME/projects | |
source /usr/local/bin/virtualenvwrapper.sh | |
# android-studio | |
if [ -d "$HOME/android-studio/bin/" ] ; then | |
PATH="$HOME/android-studio/bin:$PATH" | |
fi | |
# eagle | |
if [ -d "$HOME/eagle-7.1.0/bin/" ] ; then | |
PATH="$HOME/eagle-7.1.0/bin:$PATH" | |
fi | |
# Powerline Theme | |
# . ~/.local/lib/python2.7/site-packages/powerline/bindings/zsh/powerline.zsh | |
# Java | |
export JAVA_HOME=/usr/lib/jvm/jdk1.8.0 | |
# Maven | |
export PATH=/usr/local/apache-maven-3.2.3/bin:$PATH | |
# Added by the Heroku Toolbelt | |
export PATH="/usr/local/heroku/bin:$PATH" | |
# Ruby | |
export PATH="$PATH:$HOME/.rvm/bin" # Add RVM to PATH for scripting | |
export PATH=/home/oscar/.rvm/gems/ruby-2.1.5/bin:$PATH | |
# Load RVM into a shell session *as a function* | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment