Created
March 31, 2010 20:48
-
-
Save jhsu/350872 to your computer and use it in GitHub Desktop.
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
HISTSIZE=1000 | |
SAVEHIST=1000 | |
export EDITOR=vim | |
export PATH="${PATH}:${HOME}/bin" | |
# Path to your oh-my-zsh configuration. | |
export ZSH=$HOME/zsh/oh-my-zsh | |
export ams_dir=$HOME/apps/ams | |
export JDOTS=$HOME/.jdots | |
if [[ -s $HOME/.ams/scripts/ams ]] ; then source $HOME/.ams/scripts/ams ; fi | |
if [[ -s $HOME/.rvm/scripts/rvm ]] ; then source $HOME/.rvm/scripts/rvm ; fi | |
# Set to the name theme to load. | |
# Look in ~/.oh-my-zsh/themes/ | |
export ZSH_THEME="prose" | |
# Comment this out to disable weekly auto-update checks | |
# export DISABLE_AUTO_UPDATE="true" | |
source $ZSH/oh-my-zsh.sh | |
source $JDOTS/aliases | |
# export PATH=/opt/local/bin:/opt/local/sbin:$PATH | |
alias -s rb=$EDITOR | |
alias -s html=$EDITOR | |
alias -s csv=$EDITOR | |
alias -s log=$EDITOR | |
alias c='clear' | |
alias ..='cd ..' | |
alias hist="grep -i '$1' $HOME/.zsh_history" | |
compctl -/ cd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment