Skip to content

Commit

Permalink
Add .Brewfile for brew bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
tkareine committed Aug 2, 2024
1 parent 959dd3b commit 65d13e8
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .Brewfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# frozen_string_literal: true

# See
#
# * https://github.com/Homebrew/homebrew-bundle
# * `brew bundle --help`

tap "railwaycat/emacsmacport"
tap "tkareine/chnode"

brew "awscli"
brew "azure-cli"
brew "bash"
brew "bash-completion@2"
brew "chruby"
brew "coreutils"
brew "ffmpeg"
brew "fzf"
brew "git"
brew "global"
brew "jq"
brew "libressl"
brew "nmap"
brew "node@20"
brew "openssl@3"
brew "railwaycat/emacsmacport/emacs-mac", args: ["with-modern-icon"]
brew "readline"
brew "ripgrep"
brew "ruby-install"
brew "shellcheck"
brew "tkareine/chnode/chnode"
brew "yt-dlp"
brew "zoxide"

cask "alfred"
cask "firefox"
cask "gitup"
cask "google-chrome"
cask "imageoptim"
cask "iterm2"
cask "jdk-mission-control"
cask "keepassxc"
cask "rectangle"
cask "spotify"
cask "temurin@21"
cask "thunderbird"
1 change: 1 addition & 0 deletions bin/tools-update
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ update_rubygems() {
update_brew() {
cmd_exist brew || { echo "Skip, because \`brew\` command not found" >&2; return "$ERROR_UPDATE_COMMAND_NOT_FOUND"; }
brew update && \
brew bundle install --global && \
brew upgrade && \
brew cleanup -s
}
Expand Down
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ INSTALL_BY_COPYING_DARWIN=(
)

INSTALL_BY_SYMLINKING_COMMON=(
.Brewfile
.bash_profile
.bashrc
.bashrc-common.sh
Expand Down

0 comments on commit 65d13e8

Please sign in to comment.