aboutsummaryrefslogtreecommitdiff
path: root/zsh/zshrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2012-06-05 03:45:17 +1200
committerTom Ryder <tom@sanctum.geek.nz>2012-06-05 03:45:17 +1200
commit3920e526e251ff9b7f7d978807d902a0b77446c3 (patch)
treebc2ab540cd63cda06ad09497dc4237faac907b48 /zsh/zshrc
parentSecond attempt at shared Bash history (diff)
downloaddotfiles-3920e526e251ff9b7f7d978807d902a0b77446c3.tar.gz
dotfiles-3920e526e251ff9b7f7d978807d902a0b77446c3.zip
Couple more Zsh options
Diffstat (limited to 'zsh/zshrc')
-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