summaryrefslogtreecommitdiff
path: root/.zsh
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2012-09-12 10:24:01 +0200
committerTobias Klauser <tklauser@distanz.ch>2012-09-12 10:24:01 +0200
commitb6ca466859b0bbe1dc0614d62a48b3ca8c513330 (patch)
tree3ea850c2f92d176a8b744ef132595c75471b89f9 /.zsh
parent2ccef9e5c9295b85ecaa70b2abdb2574bce6d06c (diff)
Enable coredumps
Diffstat (limited to '.zsh')
-rw-r--r--.zsh/zprofile/00_ulimit13
1 files changed, 13 insertions, 0 deletions
diff --git a/.zsh/zprofile/00_ulimit b/.zsh/zprofile/00_ulimit
new file mode 100644
index 0000000..95e228c
--- /dev/null
+++ b/.zsh/zprofile/00_ulimit
@@ -0,0 +1,13 @@
+# zprofile/00_ulimit
+#
+# sets process limits
+#
+# Copyright © 2012 Tobias Klauser <tklauser@distanz.ch>
+# Released under the terms of the Artistic Licence 2.0
+#
+# Source repository: git://git.distanz.ch/dotfiles/zsh.git
+
+# enable core files
+ulimit -c unlimited
+
+# vim:ft=zsh