From 207014bf702ae48fd89ec6976cbfb89a7b944f66 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Thu, 27 May 2021 17:48:53 +0200 Subject: [PATCH] Add GNU Make thread amount flag --- .config/zsh/.zprofile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.config/zsh/.zprofile b/.config/zsh/.zprofile index bab6974..13c4d45 100644 --- a/.config/zsh/.zprofile +++ b/.config/zsh/.zprofile @@ -48,6 +48,9 @@ export LESS_TERMCAP_se="$(printf '%b' '\e[0m')" # reset reverse video export LESS_TERMCAP_us="$(printf '%b' '\e[04;95m')" # begin underline export LESS_TERMCAP_ue="$(printf '%b' '\e[0m')" # reset underline +# Make +export MAKEFLAGS="-j $(getconf _NPROCESSORS_ONLN)" + # npm export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc"