From eb96b03704a46bc92d28ff5e341c1981befa85fb Mon Sep 17 00:00:00 2001 From: PorridgePi Date: Tue, 27 Sep 2022 21:34:36 +0800 Subject: [PATCH] zshrc: feat: Add aliases --- .zshrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.zshrc b/.zshrc index 54a7132..bd18c1f 100644 --- a/.zshrc +++ b/.zshrc @@ -37,6 +37,13 @@ export PATH="$HOME/bin:$PATH" export TERM=xterm-256color eval $(thefuck --alias) +### Aliases +# Python +alias python='python3' +alias pip='pip3' +# Intel (Rosetta 2) Homebrew +alias ibrew='arch -x86_64 /usr/local/bin/brew' + # Case-insensitive autocomplete zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' 'r:|=*' 'l:|=* r:|=*' autoload -Uz compinit && compinit