diff options
author | Franck Cuny <franck@fcuny.net> | 2020-10-01 16:42:36 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2020-10-01 16:42:36 -0700 |
commit | dde8b99e954d053cef5e1654ffb216c6d746ec1a (patch) | |
tree | 9b55a3d115710c687159362a5a807eac320619c0 /zshrc | |
parent | [desktop] update size of the fonts (diff) | |
download | emacs.d-dde8b99e954d053cef5e1654ffb216c6d746ec1a.tar.gz |
[zsh] a few more bits of configurations
Diffstat (limited to 'zshrc')
-rw-r--r-- | zshrc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/zshrc b/zshrc index 8586c89..9786623 100644 --- a/zshrc +++ b/zshrc @@ -19,3 +19,19 @@ zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l: autoload -U select-word-style select-word-style bash + +# Print timing statistics for everything which takes longer than 5 seconds of +# user + system time ('sleep 6' does not work because of 0% user/system time!). +REPORTTIME=5 + +# Explicitly select Emacs line editing mode (independent of zsh’s best guess +# based on EDITOR/VISUAL). +bindkey -e + +setopt PROMPT_PERCENT +setopt PROMPT_SUBST + +PROMPT='[%F%25<..<%~%f%<<]$ ' + +autoload -U select-word-style +select-word-style bash |