Created
October 11, 2013 16:48
-
-
Save wesrog/6938140 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
ZSH=$HOME/.oh-my-zsh | |
ZSH_THEME="minimal" | |
smtpd() {python -m smtpd -n -c DebuggingServer localhost:25} | |
plugins=(git git-extras brew fabric osx pip redis-cli rbenv terminalapp) | |
source $ZSH/oh-my-zsh.sh | |
export PATH=$HOME/.rbenv/bin:/usr/local/bin:/usr/local/share/npm/bin:/usr/bin:/bin:/usr/sbin:/sbin | |
if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi | |
alias gl='git log --pretty=format:"%C(yellow)%h%C(reset) %C(cyan)%ad%C(reset) %C(green)%aN%Creset%C(bold red)%d%C(reset) %s" --date=short --no-merges' | |
alias gla='git log --pretty=format:"%C(yellow)%h%C(reset) %C(cyan)%ad%C(reset) %C(green)%aN%Creset%C(bold red)%d%C(reset) %s" --date=short' | |
alias make_gif="ffmpeg -i in.mov -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=10 --loop=100 --resize 320x240> out.gif" | |
export APP_ENV=dev | |
eval "$(pyenv init -)" | |
export PYTHONSTARTUP=~/.pythonrc.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment