Skip to content

Instantly share code, notes, and snippets.

@seb-thomas
Forked from t-io/osx_install.sh
Last active January 13, 2017 14:29
Show Gist options
  • Save seb-thomas/42d84ed5506fb4e4c682 to your computer and use it in GitHub Desktop.
Save seb-thomas/42d84ed5506fb4e4c682 to your computer and use it in GitHub Desktop.
#!/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