Last active
January 13, 2022 20:01
-
-
Save mimarz/c37f7493357a0eaec1797fad798f88be to your computer and use it in GitHub Desktop.
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
| #!/bin/sh | |
| # Homebrew Script for OSX | |
| # To execute: save and `chmod +x ./brew-install.sh` then `./install_packages.sh` | |
| # Install homebrew and make sure brew path is set | |
| # /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
| echo "Installing brews" | |
| brew install node | |
| brew install docker | |
| brew install git | |
| brew install cocoapods | |
| brew install gh | |
| brew install grep | |
| brew install tree | |
| brew install jq | |
| brew install flutter | |
| brew install starship | |
| echo "Installing casks" | |
| brew install --cask alfred | |
| brew install --cask figma | |
| brew install --cask iterm2 | |
| brew install --cask visual-studio-code | |
| brew install --cask microsoft-teams | |
| brew install --cask microsoft-edge | |
| brew install --cask google-chrome | |
| brew install --cask slack | |
| brew install --cask ngrok | |
| brew install --cask insomnia | |
| brew install --cask spotify | |
| brew install --cask rocket | |
| brew install --cask vlc | |
| echo "Installing finder improvements" | |
| brew install --cask qlcolorcode qlimagesize qlmarkdown qlvideo quicklook-csv quicklook-json | |
| brew install --cask suspicious-package | |
| echo "Installing zsh" | |
| /bin/bash -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" | |
| echo "Installing zsh plugins" | |
| git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions | |
| git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:=~/.oh-my-zsh/custom}/plugins/zsh-completions | |
| git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting | |
| echo "Installing mac store app installer" | |
| brew install mas | |
| echo "Installing mac store apps" | |
| # Amphetamine | |
| mas install 937984704 | |
| # Magnet | |
| mas install 441258766 | |
| # Xcode | |
| mas install 497799835 | |
| # Remote Desktop | |
| mas install 1295203466 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment