33 lines
354 B
Bash
Executable File
33 lines
354 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "***** INSTALL HOMEBREW PACKAGES *****"
|
|
|
|
ROOTDIR=$(cd "$(dirname "$0")/.." && pwd)
|
|
|
|
# Install required tools
|
|
brew install \
|
|
atuin \
|
|
bat \
|
|
direnv \
|
|
duf \
|
|
dust \
|
|
fd \
|
|
fish \
|
|
fzf \
|
|
git \
|
|
gitup \
|
|
git-delta \
|
|
git-interactive-rebase-tool \
|
|
helix \
|
|
jq \
|
|
just \
|
|
less \
|
|
macchina \
|
|
ripgrep \
|
|
tldr \
|
|
tree \
|
|
yq \
|
|
zoxide
|
|
|
|
echo
|