diff --git a/.zsh/setopt.zsh b/.zsh/setopt.zsh index 1eb491d..ee5fc3b 100644 --- a/.zsh/setopt.zsh +++ b/.zsh/setopt.zsh @@ -12,6 +12,14 @@ setopt EXTENDED_HISTORY setopt EXTENDED_GLOB setopt AUTO_CD +# display PID when suspending processes as well +setopt longlistjobs +# try to avoid the 'zsh: no matches found...' +setopt nonomatch # Turn off flow control setopt noflowcontrol - +# report the status of backgrounds jobs immediately +setopt notify +# whenever a command completion is attempted, make sure the entire command path +# is hashed first. +setopt hash_list_all