Home

Awesome

DEPRECATED

Sorry, I no longer maintain this project.
Copy from my zshrc instead :-)

zshuery

jQuery did this for JS, we're doing it for zsh. A simpler zsh configuration framework. Follows the "Explicit is better than implicit" principle from the Zen of Python, so almost nothing gets loaded when you source the file.

What's wrong with Oh My Zsh?

Nothing. It's just a bit too complex for my taste.

What's inside?

Functions & aliases

For OS X only

Example zshrc

source $yourdotfiles/zshuery/zshuery.sh
load_defaults
load_aliases
load_completion $yourdotfiles/zshuery/completion/src
load_correction

prompts '%{$fg_bold[green]%}${PWD/#$HOME/~}%{$reset_color%}$(virtualenv_info) %{$fg[yellow]%}$(prompt_char)%{$reset_color%} ' '%{$fg[red]%}$(ruby_version)%{$reset_color%}'

if is_mac; then
    export EDITOR='mvim'
else
    export EDITOR='vim'
fi

chpwd() {
    update_terminal_cwd
}