adding new setopt, thanks #zsh on Freenode and #linode on OFTC.

This commit is contained in:
staticsafe 2012-05-14 21:01:09 -04:00
parent f6011196cf
commit 4ae61131f4
1 changed files with 5 additions and 0 deletions

View File

@ -14,3 +14,8 @@ setopt AUTO_CD
# Turn off flow control
setopt noflowcontrol
# Make options
if [[ -r /proc/cpuinfo ]]; then
export MAKEOPTS=-j$(($(grep -c '^processor' /proc/cpuinfo) + 1))
fi