zstyle ':completion:*' menu select
zmodload -i zsh/complist
-#TERM=xterm-256color
-
-
# bind special keys according to readline configuration
#eval "$(sed -n 's/^/bindkey /; s/: / /p' /etc/inputrc)"
NO_HUP
-for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
- eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
- eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
-done
-PR_BOLD="%{$terminfo[bold]%}"
-PR_NO_COLOUR="%{$terminfo[sgr0]%}"
-
HISTFILE=~/.zsh_history
HISTSIZE=50000
SAVEHIST=50000
REPORTTIME=5
-TIMEFMT="$fg[magenta]%J %U user %S sys %P cpu %*E total %M kB max$terminfo[sgr0]"
+TIMEFMT="$fg[magenta]%J %U user %S sys %P cpu %*E total %M MB RSS max$terminfo[sgr0]"
autoload -Uz vcs_info && vcs_info
zstyle ':vcs_info:*' enable git cvs svn hg
setprompt
# Obtain the autofs mountpoints
-autofs_mp=""
-[ -r /etc/auto.master ] && autofs_mp=$(/bin/grep -e "^/" /etc/auto.master)
+autofs_mp=()
+[ -r /etc/auto.master ] && autofs_mp=($(/bin/grep -e "^/" /etc/auto.master | cut -f1))
function precmd ()
{
PR_EXIT="%{$fg_bold[red]%}%(?..[%?] )%{$reset_color%}"
- # autofs always complains not being able to mount .hg/ and the like
- if echo "$autofs_mp" | /bin/grep -qe "^$PWD\s"; then
- vcs_info_msg_0_="[autofs]"
- else
+ # Check whether current directory is a subdirectory of an autofs mountpoint
+ local parent="0"
+ vcs_info_msg_0_=""
+ for mp in ${autofs_mp}; do
+ # A parent directory is an autofs mount point
+ if echo "$PWD" | /bin/grep -q $mp; then
+ parent="1"
+ # Even equal!
+ if echo "$mp" | /bin/grep -q $PWD; then
+ vcs_info_msg_0_=" [autofs]"
+ fi
+ break;
+ fi
+ done
+ if [ -z "$vcs_info_msg_0_" ]; then
+ if [ "$parent" = "1" ]; then
+ # svn and hg cause complaints of autofs that .svn and .hg is no mount point
+ zstyle ':vcs_info:*' enable git cvs
+ else
+ zstyle ':vcs_info:*' enable git cvs svn hg
+ fi
vcs_info
- fi
+ fi
PR_SCREEN=""
if [[ -n "${WINDOW}" ]]; then