]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - zsh/rc
bin/remove-continuation.pl: minor cleanup
[config/dotfiles.git] / zsh / rc
diff --git a/zsh/rc b/zsh/rc
index afc78b0039ffb68ad45c17b5a12b453d50296d0b..065ab1f45cca89228eb76f59cb3a473f41d8ee2d 100644 (file)
--- a/zsh/rc
+++ b/zsh/rc
@@ -78,6 +78,9 @@ setopt extendedglob
 # pressing <C-D> twice).
 setopt ignoreeof
 
+# Also display PID when suspending a process.
+setopt longlistjobs
+
 
 # KEY BINDINGS
 
@@ -205,7 +208,7 @@ setopt pushdminus
 # PROMPT SETTINGS
 
 # Use colorized output, necessary for prompts and completions.
-autoload -Uz colors && colors
+autoload -Uz colors; colors
 
 # Necessary for $EPOCHSECONDS, the UNIX time.
 zmodload zsh/datetime
@@ -629,7 +632,7 @@ zmodload zsh/complist
 # cluttering of ~/. $fpath must be set before calling this. Thanks to Adlai in
 # #zsh on Freenode (2009-08-07 21:05 CEST) for reminding me of the $fpath
 # problem.
-autoload -Uz compinit && compinit -d ~/.zsh/cache/zcompdump
+autoload -Uz compinit; compinit -d ~/.zsh/cache/zcompdump
 
 # Use cache to speed up some slow completions (dpkg, perl modules, etc.).
 zstyle ':completion:*' use-cache yes