diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-06-12 16:14:57 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-06-12 16:14:57 -0700 |
commit | d87b901c5e7cc7c78109b51da64ffa78cd6e8f15 (patch) | |
tree | fba122b18257e5541dc02b0944b603ecf33e6d57 /zshrc | |
parent | [emacs] move org to documents instead of dropbox (diff) | |
download | emacs.d-d87b901c5e7cc7c78109b51da64ffa78cd6e8f15.tar.gz |
[zsh] replace bash with zsh
In the next version of OS X, zsh will become the default shell.
Diffstat (limited to '')
-rw-r--r-- | zshrc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/zshrc b/zshrc new file mode 100644 index 0000000..2add721 --- /dev/null +++ b/zshrc @@ -0,0 +1,23 @@ +autoload -U compinit +compinit -C + +HISTFILE=~/.zhistory +HISTSIZE=5000 +SAVEHIST=5000 + +# Add commands to history as they are entered, don't wait for shell to exit +setopt INC_APPEND_HISTORY + +# Also remember command start time and duration +setopt EXTENDED_HISTORY + +# Do not keep duplicate commands in history +setopt HIST_IGNORE_ALL_DUPS + +# Do not remember commands that start with a whitespace +setopt HIST_IGNORE_SPACE + +zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*' + +autoload -U select-word-style +select-word-style bash |