diff options
Diffstat (limited to 'etc/zle')
-rw-r--r-- | etc/zle | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,10 @@ ## vim:ft=zsh autoload -U url-quote-magic zle -N self-insert url-quote-magic + +autoload predict-on +zle -N predict-on +zle -N predict-off +bindkey '^Z' predict-on +bindkey '^X^Z' predict-off +zstyle ':predict' verbose true |