+# options
+setopt autocd extendedglob
+unsetopt beep
+
+# history
+setopt appendhistory
+HISTFILE=~/.histfile
+HISTSIZE=100
+SAVEHIST=100
+
+# keys
+bindkey -v
+# xorg
+bindkey "^[[7~" beginning-of-line #Home
+bindkey -a "^[[7~" beginning-of-line
+bindkey "^[[8~" end-of-line #End
+bindkey -a "^[[8~" end-of-line
+bindkey "^[[3~" delete-char #Del
+bindkey -a "^[[3~" delete-char
+# bsd vt
+bindkey "^[[H" beginning-of-line #Home
+bindkey -a "^[[H" beginning-of-line
+bindkey "^[[F" end-of-line #End
+bindkey -a "^[[F" end-of-line
+
+autoload -Uz up-line-or-beginning-search down-line-or-beginning-search
+zle -N up-line-or-beginning-search
+zle -N down-line-or-beginning-search
+[[ -n "$key[Up]" ]] && bindkey -- "$key[Up]" up-line-or-beginning-search
+[[ -n "$key[Down]" ]] && bindkey -- "$key[Down]" down-line-or-beginning-search
+