#!/bin/zsh bindkey -e stty -ixon ixany stty erase '^H' zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z} r:|[/]=* r:|=*' zstyle ':completion:*' use-cache true if [ -d "$HOME/.zfunc" ]; then fpath=($HOME/.zfunc $fpath) autoload -U ~/.zfunc/*(:t) function r() { local f f=(~/.zfunc/*(.)) unfunction $f:t 2> /dev/null autoload -U $f:t } fi if [ -f "$HOME/.ssh/known_hosts" ]; then _cache_hosts=(`perl -ne 'if (/^([a-zA-Z0-9.-]+)/) { print "$1\n";}' ~/.ssh/known_hosts`) fi autoload -U colors colors setopt no_beep setopt auto_cd setopt auto_list setopt auto_menu setopt auto_name_dirs setopt auto_param_keys setopt auto_param_slash setopt auto_remove_slash setopt c_bases setopt chase_links setopt complete_aliases setopt correct setopt equals setopt glob_complete setopt prompt_bang setopt prompt_percent setopt prompt_subst setopt pushd_ignore_dups setopt pushd_to_home setopt sh_file_expansion setopt always_last_prompt setopt extended_glob setopt hist_ignore_all_dups setopt hist_ignore_space setopt inc_append_history setopt share_history function _we_are_in_gnu_screen () { [ "$WINDOW" != "" ] } _prompt_base='%B[%n@%m] %{%(?.$fg[green].$fg[red])%}%#%{$reset_color%}%b ' if ( _we_are_in_gnu_screen ); then # GNU Screen has a capability to set its window title by "ESC k # {string} ESC \". We want to reset the title to `_' to show we # aren't running any command now. PROMPT=$'%{\ek_\e\\%}'$_prompt_base else PROMPT=$_prompt_base fi function preexec() { # Hook if { _we_are_in_gnu_screen } then # Set the window title of GNU Screen. local cmd=${1[(wr)^(*=*|sudo|nice|env|time|-*|[0-9]*)]} printf "\ek$cmd\e\\" fi } function precmd() { # Hook local dirinfo=$(print_directory_info $(pwd)) case $dirinfo in "") RPROMPT='%U%~%u';; *) RPROMPT="%U%~%u %U($dirinfo)%u";; esac } function print_directory_info() { local absdir=$1 if [[ -d $absdir/.git ]] then # Git git branch --no-color 2>/dev/null \ | sed -e '/^[^*]/d' -e 's/* \(.*\)/\1/' elif [[ -d $absdir/.hg ]] then # Hg hg branch 2>/dev/null elif [[ -d $absdir/_darcs ]] then # Darcs basename $absdir elif [[ -r $absdir/CVS/Repository ]] then # CVS cat $absdir/CVS/Repository \ | sed -e 's!\([^/]*\).*!\1!' else # Unknown. if [[ $absdir = "/" ]] then # This is the root directory so exit from the recursion. echo else # Recurse to the parent dir. print_directory_info $(dirname $absdir) fi fi } HISTFILE="$HOME/.zhistory" HISTSIZE=6000000 SAVEHIST=6000000 alias -g L="| $PAGER" alias -g G="| grep" alias -g H="| head" alias -g T="| tail" alias ..='cd ..' alias cd..='cd ..' alias p='pushd' alias o='popd' alias d='dirs' alias df='df -h' alias ed='ed -p "ed> "' alias du='du -k' alias nc='nc -vv' alias mwget="wget --user-agent='Mozilla/1.4b'" alias pstow="pushd /usr/local/stow" alias w3m="w3m -O UTF-8" alias w3mb="w3m -O UTF-8 -B" alias pkgsrc="pushd /usr/pkgsrc" alias aria="ssh -X admin@aria.cielonegro.org" alias nem="ssh -X pho@nem.cielonegro.org" alias mikasa="ssh -X daimon@mikasa.tomilab.net" alias aria-emacs="ssh -f -X admin@aria.cielonegro.org emacsclient -c" alias g1="ssh pho@g1.cuenote.jp" alias g2="ssh pho@g2.cuenote.jp" alias mana="ssh pho@mana" if [ $(hostname) = "aria.cielonegro.org" ]; then alias safari="open -a Safari" alias unstuff='open -a StuffIt\ Expander.app' alias pa='open -a NiseRingo.app' alias heboris='open /Applications/HeborisUEMac/exe/Heboris\ OpenGL.app' alias hengband='open ~/Applications/hengband*/Hengband*' fi if [ $(uname) = "Darwin" ]; then alias ldd="otool -L" alias ls='ls -Fw' alias la='ls -aw' alias l='ls -lw' alias lls='ls -law' alias top='/usr/bin/top -X -o cpu' else alias ls='ls -F' alias la='ls -a' alias l='ls -l' alias lls='ls -la' fi # The following lines were added by compinstall zstyle :compinstall filename "$HOME/.zshrc" autoload -U compinit compinit # End of lines added by compinstall if [ "x$WINDOW" = "x" ]; then if which fortune 2>&1 >/dev/null; then fortune fi fi if [ -e ".motd" ]; then cat .motd fi if which ssh-agent-manager 2>&1 >/dev/null; then eval `ssh-agent-manager -s` fi