Created
December 12, 2021 15:02
-
-
Save nilshartmann/25ef96d56650994f6a7adab42f9bdead to your computer and use it in GitHub Desktop.
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
#! /bin/zsh | |
#xcode-select --install | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" |
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
#! /bin/zsh | |
# Make sure we’re using the latest Homebrew. | |
brew update | |
# Upgrade any already-installed formulae. | |
brew upgrade | |
brew tap homebrew/cask-versions | |
brew tap buo/cask-upgrade | |
# https://github.com/alexramirez/mac-setup | |
# App Store | |
brew install mas | |
## ------------------------------------------------------------------------ | |
## | |
## FONTS | |
## | |
## ------------------------------------------------------------------------ | |
# https://gist.github.com/muammar/a5ffb635eb7f532346a8e777b847f8a7 | |
brew tap homebrew/cask-fonts | |
brew install --cask \ | |
font-fira-code \ | |
font-fira-mono | |
# For Adobe fonts,svn is needed | |
brew install svn | |
brew install --cask font-source-code-pro | |
brew install --cask font-source-sans-pro | |
brew install --cask font-source-serif-pro | |
## ------------------------------------------------------------------------ | |
## | |
## Apps | |
## | |
## ------------------------------------------------------------------------ | |
# Latest Git Version | |
brew install git | |
brew install alfred | |
# Browsers | |
brew install firefox | |
brew install google-chrome | |
brew install --cask chromium | |
# Terminal | |
brew install iterm2 | |
brew install --cask forklift | |
brew install --cask beyond-compare | |
brew install jq | |
brew install tree | |
brew install wget | |
brew install httpie | |
#ä brew install rabbitmq | |
# brew install lftp | |
# Editor | |
brew install --cask bbedit | |
brew install visual-studio-code | |
# Helper | |
# Amphetamine | |
mas install 937984704 | |
brew install --cask istat-menus | |
brew install --case stats | |
# tg-pro von Hand installieren | |
brew install --cask rectangle | |
# Node | |
brew install node | |
brew install nvm | |
brew install yarn | |
# Office+Co | |
brew install --cask snagit | |
brew install --cask camtasia | |
brew install spotify | |
brew install vlc | |
brew install zoom | |
brew install --cask adobe-acrobat-reader | |
brew install microsoft-office | |
brew install microsoft-teams | |
brew install slack | |
brew install miro | |
brew install --cask affinity-designer | |
# Ngrok | |
brew install ngrok | |
# IDE+Co | |
brew install intellij-idea | |
brew install webstorm | |
brew install --cask fork | |
brew install --cask tableplus | |
brew install --cask stoplight-studio | |
# Remove outdated versions from the cellar. | |
brew cleanup | |
brew doctor |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment