From: martin f. krafft Date: Wed, 7 May 2008 10:10:54 +0000 (+0100) Subject: several more options i like X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/7964cdfea7efc26a42f26a33b8626d319c91b8f4?hp=c2fc1c7c9dc991f9e71b1074a5556572f7e0a368 several more options i like --- diff --git a/.zsh/zshrc/00_TODO b/.zsh/zshrc/00_TODO index 32e197d..dc1294b 100644 --- a/.zsh/zshrc/00_TODO +++ b/.zsh/zshrc/00_TODO @@ -23,6 +23,18 @@ setopt autopushd pushdminus pushdsilent pushdtohome # brace expansion setopt braceccl +# print backgrounded jobs when they finish +setopt notify +# bg-processes should not be nice +unsetopt bgnice +# send no HUP signal to running jobs when the shell exits +setopt nohup +# don't bother me with running jobs (only wize with setopt nohup) +unsetopt checkjobs + +# disable backslashed escape sequences unless -e is given to echo +setopt bsd_echo + [ "$(umask)" = 022 ] && umask 0077 eval `lesspipe 2>/dev/null`