diff --git a/brew/Brewfile b/brew/Brewfile index b9d494c..7d6c9b7 100644 --- a/brew/Brewfile +++ b/brew/Brewfile @@ -1,6 +1,3 @@ -tap "homebrew/bundle" -tap "homebrew/services" - brew "bat" brew "coreutils" brew "dateutils" @@ -36,5 +33,5 @@ cask "font-iosevka" cask "font-iosevka-slab" cask "gimp" cask "karabiner-elements" -cask "nikitabobko/tap/aerospace" +cask "nikitabobko/tap/aerospace", trusted: true cask "vlc" diff --git a/brew/install b/brew/install index 08366e3..5621a46 100755 --- a/brew/install +++ b/brew/install @@ -6,7 +6,7 @@ CURDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" brewfile="${CURDIR}/Brewfile" bundle() { - brew bundle --file "${brewfile}" "${@:-}" + brew bundle --file "${brewfile}" "${@+"$@"}" } bundle check || bundle diff --git a/zsh/darwin.zshrc b/zsh/darwin.zshrc index 079dcc4..fcbc612 100644 --- a/zsh/darwin.zshrc +++ b/zsh/darwin.zshrc @@ -8,6 +8,3 @@ alias date='gdate' alias awk='gawk' source ~/.profile - -[ -s "/opt/homebrew/opt/nvm/nvm.sh" ] && source "/opt/homebrew/opt/nvm/nvm.sh" -[ -s "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm" ] && source "/opt/homebrew/opt/nvm/etc/bash_completion.d/nvm"