Created
October 14, 2024 14:04
-
-
Save tanguyantoine/05fa6b57c2ff1d0102cd10dd1dcb1cf4 to your computer and use it in GitHub Desktop.
Brewfile
This file contains 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
# specify a directory to install | |
cask_args appdir: "~/Applications", require_sha: true | |
# install only on specified OS | |
brew "gnupg" if OS.mac? | |
brew "glibc" if OS.linux? | |
# install packages | |
brew 'git' | |
brew 'bash-completion' | |
brew 'tree' | |
brew '[email protected]' | |
brew 'poetry' | |
cask 'alfred' | |
cask 'docker' | |
cask 'visual-studio-code' | |
cask 'slack' | |
cask 'iterm2' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment