DebianをLennyに新規インストールしてみた。これまでの環境をまっさらに。.zshrcを保存していなかったので、かなり涙目に。。。これからはここからコピーするように、備忘録として投稿:
# === Completition ===
autoload -U compinit
compinit
setopt correct
# === Prediction ===
autoload predict-on
predict-on
# === History ===
HISTFILE=~/.zhistory
SAVEHIST=10000
setopt hist_no_store hist_ignore_dups hist_reduce_blanks hist_ignore_space
setopt sharehistory
# === Key Bind ===
bindkey -e
# === Color ===
autoload -U colors
colors
# === Prompt ===
RPROMPT="%~ [%h]"
# http://blog.8-p.info/2009/01/red-prompt
PROMPT="%{$fg[green]%}%n@%m%#%{$reset_color%} "
precmd () {
PROMPT="%{%(?.$fg[green].$fg[red])%}%n@%m%#%{$reset_color%} "
}
# === Direcotry ===
setopt auto_pushd
# === Aliases ===
alias ls="ls --color=auto"
alias ll="ls -l --color=auto"
alias cp="cp -p"
alias ld="ls -l --color=auto | grep ^d"
alias aptitude="sudo aptitude"
# === Misc ===
# For Emacs Tramp Access
case "$TERM" in
dumb | emacs)
PROMPT="%m:%~> "
unsetopt zle
;;
esac