blob: 95e228c410e94cfaccf40fe5a566475b68aaa3f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|