Bugs in network setting aliases are fixed.
1 # Lines configured by zsh-newuser-install
8 setopt hist_ignore_dups
10 setopt magic_equal_subst
12 # End of lines configured by zsh-newuser-install
13 # The following lines were added by compinstall
14 # zstyle :compinstall filename '/home/swk/.zshrc'
16 fpath=($fpath /usr/share/zsh/functions/Zle)
19 # End of lines added by compinstall
21 autoload history-search-end
22 zle -N history-beginning-search-backward-end history-search-end
23 zle -N history-beginning-search-forward-end history-search-end
24 bindkey '^P' history-beginning-search-backward-end
25 bindkey '^N' history-beginning-search-forward-end
31 export JLESSCHARSET=ja
32 export LS_COLORS="di=31:ex=34:ln=46:pi=0:so=0:cd=0:bd=0"
34 alias ls="ls --color=tty"
36 alias lynx="lynx -nopause"
40 alias ls="gnuls --color=tty"
46 alias ls="ls --color=tty --show-control-chars"
47 if [ -e ${HOME}/.zshrc.cygwin ]; then
48 source ${HOME}/.zshrc.cygwin
53 PROMPT=$'%{\e[35m%}%m%#%{\e[m%} '
54 precmd() { RPROMPT="[$PWD]" }
56 dirbase() { basename `pwd` }
57 chpwd() { [ "x$TERM" = "xscreen" ] && echo -n "\ek`hostname | cut -b 1-3`:`dirbase`\e\\" }