X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=zsh%2Frc;h=065ab1f45cca89228eb76f59cb3a473f41d8ee2d;hb=fe929ed681f18cb76df46f10da5166a9fe69d211;hp=afc78b0039ffb68ad45c17b5a12b453d50296d0b;hpb=f2df0b785d347bb35b06ba9943cea380c1ac7637;p=config%2Fdotfiles.git diff --git a/zsh/rc b/zsh/rc index afc78b0..065ab1f 100644 --- a/zsh/rc +++ b/zsh/rc @@ -78,6 +78,9 @@ setopt extendedglob # pressing 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