summaryrefslogtreecommitdiff
path: root/.zsh
diff options
context:
space:
mode:
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