From 7964cdfea7efc26a42f26a33b8626d319c91b8f4 Mon Sep 17 00:00:00 2001
From: "martin f. krafft" <madduck@madduck.net>
Date: Wed, 7 May 2008 11:10:54 +0100
Subject: [PATCH] several more options i like

---
 .zsh/zshrc/00_TODO | 12 ++++++++++++
 1 file changed, 12 insertions(+)

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`
-- 
2.39.5