Added rectangle to casks

This commit is contained in:
2021-12-15 08:19:48 -05:00
parent dca49baa78
commit a373a5ab37
3 changed files with 12 additions and 3 deletions

View File

@@ -7,5 +7,6 @@ cask "iterm2"
cask "microsoft-teams"
cask "obs"
cask "paw"
cask "rectangle"
cask "sketchup-pro"

View File

@@ -19,3 +19,6 @@ alias gco() { git checkout "$@" }
alias gma() { git add . && git commit -m "$1" }
alias gs() { git status }
# move back to old cwd
alias bk() { cd "$OLDPWD" }

View File

@@ -5,8 +5,12 @@ HISTFILE=$ZDOTDIR/history
# Allow useful scripts in ~/.bin to be in the search path.
export PATH=~/.bin:$PATH
export PATH=/opt/homebrew/bin:$PATH
export PATH=/opt/homebrew/sbin:$PATH
# Add homebrew to the path
if [ -d /opt/homebrew ]; then
export PATH=/opt/homebrew/bin:$PATH
export PATH=/opt/homebrew/sbin:$PATH
fi
# zsh-completions installed by homebrew
if type brew &>/dev/null; then
@@ -17,3 +21,4 @@ if type brew &>/dev/null; then
fi
export EDITOR="nvim"