# Shell options & some functions. . "$HOME/cf/sh/shopt.cf" . "$HOME/cf/sh/function.cf" #set -x #bindkey -a #bindkey -M viins '_' insert-last-word bindkey -a '_' insert-last-word bindkey -v bindkey -M viins '' end-of-line bindkey -M viins '' beginning-of-line bindkey -M viins '' backward-kill-line bindkey -M viins ' ' kill-whole-line bindkey -M viins ' ' expand-or-complete-prefix #bindkey -v HISTFILE="${HOME}/log/misc/zhist" SAVEHIST=500 HISTSIZE=1000 ## prompt # #tty=`tty` #tty=${tty##*/tty} set -o PROMPT_BANG . ~/cf/sh/var/colors #set -x -v case $TERM in *xterm* | *rxvt* ) #TERM=xterm-color #export TERM precmd() { print -n -P "\e]0;%l %3~ %n.%m\a" ; } PS1="# ?:%? %j %l ${bold}${yellow_fg}%5~${normal}${normal}" PS1="$PS1 %n.${bold}${cyan_fg}%m${normal}${normal}" PS1=" $PS1 (%D{%a %b%d %I%M}) #! " export PS1 ;; * ) PS1="# %j %n@%m %l ${bold}%3~${normal} # " export PS1 ;; esac