From 793a6651fb02037d0e9965dbb2b6c0d24f05d75c Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Fri, 23 Dec 2022 18:49:38 +0100 Subject: [PATCH] chore(zsh): add a new alias --- zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zshrc b/zshrc index 1b30bf7..72b19d9 100644 --- a/zshrc +++ b/zshrc @@ -404,6 +404,9 @@ if type nvim > /dev/null 2>&1; then alias vim='nvim' fi +# Homebrew +alias bi='brew install' + # Tmux alias t='tmux' alias mux="tmuxinator" @@ -439,6 +442,9 @@ alias flush="dscacheutil -flushcache && killall -HUP mDNSResponder" # Recursively delete `.DS_Store` files alias cleanup="find . -type f -name '*.DS_Store' -ls -delete" +# Clear the screen +alias c="clear" + # Empty the Trash on all mounted volumes and the main HDD # Also, clear Apple’s System Logs to improve shell startup speed alias emptytrash="sudo rm -rfv /Volumes/*/.Trashes; sudo rm -rfv ~/.Trash; sudo rm -rfv /private/var/log/asl/*.asl"