config/install/install-brew-packages.sh

27 lines
375 B
Bash
Executable File

#!/bin/bash
echo "***** INSTALL HOMEBREW PACKAGES *****"
ROOTDIR=$(cd "$(dirname "$0")/.." && pwd)
# Install required tools
brew install \
bat \
diff-so-fancy \
fd \
fish \
fzf \
git \
git-interactive-rebase-tool \
less \
macchina \
neovim \
ripgrep \
tree \
zoxide
# Install optional tools (prompted by fzf)
"$ROOTDIR/install/install-brew-extra.fish"
echo