]> git.alrj.org Git - zsh.d.git/blobdiff - S10_zshopts
Correct Konsole tab renaming
[zsh.d.git] / S10_zshopts
index 4f3c2f8486271c96627588cf64462b6b52ca3cb0..c4c3b6c4281d5d570e2a6609b550b34953e8a7e7 100644 (file)
@@ -8,10 +8,22 @@ fi
 setopt auto_cd
 setopt nobeep
 
+autoload -U colors
+colors
+setopt prompt_subst
+
 typeset -ga preexec_functions
 typeset -ga precmd_functions
 typeset -ga chpwd_functions
-psvar=()
+
+# use emacs bindings
+bindkey -e
+
+# This must be done very early.
+clear_psvar() {
+  psvar=()
+}
+precmd_functions+='clear_psvar'
 
 
 [ -w $zsh_cache ] && HISTFILE=$zsh_cache/history