Created
December 19, 2012 21:15
-
-
Save elmendalerenda/4340548 to your computer and use it in GitHub Desktop.
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
autoload -U compinit promptinit | |
compinit | |
promptinit | |
# This will set the default prompt to the walters theme | |
prompt walters | |
autoload -U compinit | |
compinit | |
autoload -U colors && colors | |
# command alias | |
alias ls='ls -F --color=auto' | |
alias ll='ls -lh' | |
alias grep='grep --color=auto' | |
alias clip='xclip -i -selection clipboard' | |
PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting | |
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" | |
PATH=$HOME/workspace/jdk1.7.0_09/bin:$PATH | |
JAVA_HOME=$HOME/workspace/jdk1.7.0_09 | |
### Added by the Heroku Toolbelt | |
export PATH="/usr/local/heroku/bin:$PATH" | |
setopt autocd | |
HISTSIZE=1500 | |
HISTFILE=~/.zsh_history | |
SAVEHIST=1500 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment