-
-
Save seb-thomas/42d84ed5506fb4e4c682 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/sh | |
echo Install Homebrew, and cask things | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
brew install fish | |
brew install node | |
brew install git | |
brew install caskroom/cask/brew-cask | |
#brew cask search | |
#brew cask uninstall app | |
# Core Functionality | |
echo Install Apps | |
brew cask install --appdir="/Applications" google-chrome | |
brew tap caskroom/versions | |
brew cask install sublime-text | |
brew cask install --appdir="/Applications" iterm2 | |
brew cask install --appdir="/Applications" spotify | |
brew cask install --appdir="/Applications" spotify-notifications | |
brew cask install flux | |
# cleanup | |
brew cleanup --force | |
rm -f -r /Library/Caches/Homebrew/* | |
git config --global user.name "Seb" | |
git config --global user.email [email protected] | |
export LSCOLORS=gxfxbEaEBxxEhEhBaDaCaD | |
touch ~/.config/fish/config.fish | |
echo 'alias gs "git status"' >> ~/.config/fish/config.fish | |
echo 'alias gcom "git commit -am"' >> ~/.config/fish/config.fish | |
echo 'alias gplo "git pull origin"' >> ~/.config/fish/config.fish | |
echo 'alias llp "stat -f '%A %a %N' *"' >> ~/.config/fish/config.fish | |
mkdir ~/dev |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment