dotfiles

My configuration files
git clone git://git.finwo.net/misc/dotfiles
Log | Files | Refs

commit 7b69907a359009cae195f731692c982fb6d8bee4
parent ac3d3c88dc4f44daaa1ca39c5a1ecfceee845491
Author: finwo <finwo@pm.me>
Date:   Wed, 13 Dec 2023 23:47:57 +0100

More osx coreutil fixes

Diffstat:
Mzsh/home/.zshrc | 11+++++++----
1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/zsh/home/.zshrc b/zsh/home/.zshrc @@ -95,10 +95,13 @@ fi # }}} # OSX coreutil fixes {{{ -command -v gcp &>/dev/null && alias cp="gcp" -command -v gls &>/dev/null && alias ls="gls" -command -v gmv &>/dev/null && alias mv="gmv" -command -v grm &>/dev/null && alias rm="grm" +command -v gcp &>/dev/null && alias cp="gcp" +command -v gls &>/dev/null && alias ls="gls" +command -v gmv &>/dev/null && alias mv="gmv" +command -v grm &>/dev/null && alias rm="grm" +command -v gmake &>/dev/null && alias make="gmake" + +command -v nproc &>/dev/null || alias nproc="sysctl -n hw.ncpu" # }}} # Aliases {{{