Sep 06 2007
zshとscreen
使い始めて2ヶ月となり、もう手放せなくなった(ノ∀`)
環境構築のために.zshrcと.screenrcは貼り付け。
.zshrc
# .zshrc
#
HISTFILE="$HOME/.zhistory"
HISTSIZE=10000
SAVEHIST=10000
umask 022
# スクリプトとして起動された場合、ここでプロセスが終了する。
[ $#PROMPT -eq 0 -o $#TERM -eq 0 ] && return
setopt prompt_subst
PROMPT='%{'$'\e[''34m%}%B[%m@%n]%b%{'$'\e[''m%}%% '
RPROMPT='%{'$'\e[''33m%}[%~]%{'$'\e[''m%}'
bindkey -v
autoload -U compinit
compinit -u
setopt hist_reduce_blanks
setopt share_history
setopt no_beep
setopt auto_pushd
setopt append_history
setopt auto_list
setopt auto_menu
setopt auto_param_keys
setopt auto_remove_slash
setopt auto_param_slash
setopt bang_hist
setopt brace_ccl
setopt cdable_vars
setopt complete_in_word
setopt complete_aliases
setopt extended_history
setopt hist_ignore_dups
setopt hist_ignore_space
setopt list_types
setopt magic_equal_subst
setopt multios
setopt numeric_glob_sort
setopt noclobber
setopt no_flow_control
setopt no_hup
setopt no_list_beep
setopt notify
setopt prompt_subst
setopt pushd_ignore_dups
setopt rm_star_silent
setopt sun_keyboard_hack
setopt sh_word_split
setopt histallowclobber
setopt printeightbit
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
.screenrc
escape ^Z^Z
defscrollback 4096
hardstatus on
hardstatus alwayslastline
hardstatus string "%{.bW}%-w%{.rW}%n %t%{-}%+w %=%{..G} %H %{..Y} %m/%d %c "
multiuser on
altscreen on