Last active
August 9, 2019 02:07
-
-
Save cuducos/50be925feb15cb6f3a77 to your computer and use it in GitHub Desktop.
Computer Bootstraps
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/bash | |
############################################################################## | |
# Install system packages # | |
############################################################################## | |
xcode-select --install | |
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target / | |
# install homebrew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
# install extra taps | |
brew tap caskroom/fonts | |
brew tap neovim/neovim | |
# install brew packages | |
brew install ack | |
brew install autojump | |
brew install awscli | |
brew install bat | |
brew install fish | |
brew install git | |
brew install git-cola | |
brew install gpg | |
brew install heroku-toolbelt | |
brew install htop | |
brew install neovim | |
brew install node | |
brew install pandoc | |
brew install pyenv | |
brew install rbenv | |
brew install rbenv-gem-rehash | |
brew install ruby-build | |
brew install sass/sass/sass | |
brew install shellcheck | |
brew install the_silver_searcher | |
brew install tmux | |
brew install tmate | |
brew install xz | |
# install brew cask packages | |
brew cask install 1password | |
brew cask install appzapper | |
brew cask install dash | |
brew cask install dropbox | |
brew cask install firefox | |
brew cask install font-fira-code | |
brew cask install google-chrome | |
brew cask install google-drive | |
brew cask install iterm2 | |
brew cask install keybase | |
brew cask install markright | |
brew cask install prince | |
brew cask install skype | |
brew cask install slack | |
brew cask install soda-player | |
brew cask install spotify | |
brew cask install telegram | |
brew cask install tor-browser | |
brew cask install zoomus | |
# clean up | |
brew cleanup -s | |
rm -rfv `brew --cache` | |
# install oh-my-fish | |
curl -L https://get.oh-my.fish | fish | |
omf install l | |
omf install tmux-zen |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment