Created
December 8, 2023 07:28
-
-
Save anbergem/fb499512adf4a8b4d651534bf990f56f to your computer and use it in GitHub Desktop.
Brewfile for mac setup
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
| # This is a Brewfile for Homebrew Bundle. | |
| # Learn more: https://github.com/Homebrew/homebrew-bundle | |
| # Tap repositories for additional software packages | |
| tap 'homebrew/cask' | |
| # CLI | |
| brew '[email protected]' | |
| brew 'openjdk' | |
| brew 'gcc' | |
| brew 'kotlin' | |
| brew 'node' | |
| brew 'typescript' | |
| # Casks (apps) | |
| cask 'bitwarden' # Password manager | |
| cask 'iterm2' # terminal | |
| cask 'jetbrains-toolbox' # The one and only | |
| cask 'visual-studio-code' | |
| cask 'github' # Github Desktop | |
| cask 'maccy' # Clipboard history | |
| cask 'google-chrome' | |
| cask 'microsoft-edge' | |
| cask 'lasso' # Window management | |
| cask 'rocket-typist' # Snippet repository | |
| cask 'devtoys' # Development utilities | |
| cask 'microsoft-office-businesspro' # Microsoft 365, including office, teams, outlook | |
| # Mac app store | |
| brew 'mas' | |
| mas "Timery for Toggl", id: 1425368544 | |
| # Run script: | |
| #brew bundle | |
| # Uninstall apps not in Brewfile | |
| #brew bundle cleanup |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment