aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zsh/zshrc8
1 files changed, 7 insertions, 1 deletions
diff --git a/zsh/zshrc b/zsh/zshrc
index 0693b961..22fe4818 100644
--- a/zsh/zshrc
+++ b/zsh/zshrc
@@ -42,11 +42,17 @@ unsetopt alwayslastprompt
# Don't beep at me.
unsetopt beep
+# Don't use flow control.
+unsetopt flowcontrol
+
# Don't put filetype suffices in lists.
unsetopt listtypes
# Use zsh's built-in autocompletion.
-autoload -Uz compinit && compinit
+autoload -Uz zutil
+autoload -Uz compinit
+autoload -Uz complist
+compinit
# Make completion expand and correct helpfully.
zstyle ':completion:*' completer _expand _complete _correct _approximate