From 1c383283c761f1d363e1b6c1f43ed7f251af758e Mon Sep 17 00:00:00 2001 From: PowerUser64 Date: Mon, 15 Nov 2021 20:01:20 -0800 Subject: [PATCH] zsh: new alias for `make` --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index fb327a8..2c85b7c 100644 --- a/.zshrc +++ b/.zshrc @@ -86,6 +86,9 @@ # I hate it when I get ghost script instead of git status. this will be removed alias gs="echo 'you don'\''t really want ghost script, do you?'" + # tell make to use all cpu cores + alias make='make -j$(nproc)' + # Colors alias \ ls='ls -hN --color=auto --group-directories-first' \