normcore.dev

Brewfileを使ってMacのアプリをまとめてインストール

OSをクリーンインストールしたので、Brewfileを使って必要なアプリケーションやフォントをまとめてインストールしました

Brewfileを作成

touch ~/Brewfile
vim ~/Brewfile

Brewfile

cask_args appdir: '/Applications'

tap 'heroku/brew'
tap 'homebrew/cask-fonts'

brew 'bat'
brew 'exa'
brew 'fd'
brew 'fish'
brew 'git'
brew 'gh'
brew 'ripgrep'
brew 'heroku'
brew 'jq'
brew 'mas'
brew 'mysql-client'
brew 'vim'
brew 'heroku'
brew 'starship'

cask '1password'
cask 'alfred'
cask 'appcleaner'
cask 'deepl'
cask 'discord'
cask 'docker'
cask 'firefox'
cask 'google-chrome'
cask 'google-japanese-ime'
cask 'iterm2'
cask 'jetbrains-toolbox'
cask 'karabiner-elements'
cask 'kindle'
cask 'monitorcontrol'
cask 'mysqlworkbench'
cask 'notion'
cask 'postman'
cask 'tableplus'
cask 'visual-studio-code'
cask 'zoom'

# Fonts
cask 'font-hackgen'
cask 'font-hackgen-nerd'

# mas
mas 'The Unarchiver', id: 425424353
mas 'BetterSnapTool', id: 417375580
mas 'LINE', id: 539883307

Homebrewインストール

Homebrew公式の手順でインストール

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Brew Bundle

brew bundle

完了したら確認

brew list

以上!