diff options
author | Aaron LI <aaronly.me@outlook.com> | 2017-03-18 22:33:54 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2017-03-18 22:33:54 +0800 |
commit | ce57cdeb9977b9d4d02faada22b62b53c3fb276a (patch) | |
tree | 7814b15e4c04568e608607a83bf0f4b64cd4d679 /_zsh/10-setopt.zsh | |
parent | 7f53a273c138563999fc6780fd60d74a7ac908fd (diff) | |
download | dotfiles-ce57cdeb9977b9d4d02faada22b62b53c3fb276a.tar.bz2 |
zsh: Update various settings; with minor fixes
Credit: http://chneukirchen.org/dotfiles/.zshrc
Diffstat (limited to '_zsh/10-setopt.zsh')
-rw-r--r-- | _zsh/10-setopt.zsh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/_zsh/10-setopt.zsh b/_zsh/10-setopt.zsh index c415dc3..8d95b41 100644 --- a/_zsh/10-setopt.zsh +++ b/_zsh/10-setopt.zsh @@ -1,6 +1,6 @@ # # zsh/setopt.zsh -# see man zshoptions(1) +# see zshoptions(1) # ## Basics @@ -20,6 +20,8 @@ setopt EXTENDED_GLOB setopt INTERACTIVE_COMMENTS # display PID when suspending processes as well setopt LONG_LIST_JOBS +# disable output flow control via start/stop characters (^S/^Q) +unsetopt FLOW_CONTROL ## History # allow multiple terminal sessions to all append to one zsh command history @@ -41,7 +43,7 @@ setopt HIST_VERIFY ## Completion -# * shouldn't match dotfiles. ever. +# `*' shouldn't match dotfiles. ever. setopt NO_GLOB_DOTS # allow completion from within a word/phrase setopt COMPLETE_IN_WORD @@ -50,6 +52,8 @@ setopt ALWAYS_TO_END # show completion menu on successive tab press (needs 'unsetopt MENU_COMPLETE') setopt AUTO_MENU unsetopt MENU_COMPLETE +# make the completion list compact +setopt LIST_PACKED ## Correction # spelling correction for commands |