Last active
March 23, 2019 15:57
-
-
Save vochicong/9139953e4acd63e090459bf16d65d722 to your computer and use it in GitHub Desktop.
brew bundleでMacのアプリをまとめてインストール・管理 ref: https://qiita.com/vochicong/items/f20afc89a6847cd58f0f
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Brewfile | |
| cask_args appdir: "/Applications" | |
| tap "caskroom/cask" | |
| tap "homebrew/bundle" | |
| tap "homebrew/core" | |
| cask "google-chrome" | |
| cask "slack" | |
| cask "github" | |
| brew "git" | |
| brew "vim" | |
| brew "zsh" | |
| brew "zsh-completions" | |
| cask "iterm2" | |
| cask "atom" | |
| cask "jetbrains-toolbox" | |
| brew "docker" | |
| cask "docker" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cp ~/.Brewfile ~/.Brewfile.bak | |
| brew bundle dump --global --force | |
| gist ~/.Brewfile |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment