-
-
Save leontiy/454567 to your computer and use it in GitHub Desktop.
.zshrc
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
export LC_CTYPE=en_US.UTF-8 | |
export PATH=$PATH:~/scripts:/opt/local/bin:/Developer/usr/bin:/usr/local/texlive/2009/bin/universal-darwin:/usr/local/git/bin/ | |
export EDITOR='mate -w' | |
export GIT_EDITOR="mate -wl1" | |
export LESSEDIT='mate -l %lm %f' | |
PS1="%n@%m:%20~%#> " | |
autoload -U compinit | |
compinit | |
zstyle ':completion:*:descriptions' format '%U%B%d%b%u' | |
zstyle ':completion:*:warnings' format '%BSorry, no matches for: %d%b' | |
setopt correctall | |
export HISTSIZE=2000 | |
export HISTFILE="$HOME/.history" | |
export SAVEHIST=$HISTSIZE | |
setopt hist_ignore_all_dups | |
setopt hist_ignore_space | |
setopt autocd | |
setopt extendedglob |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment