Last active
August 29, 2015 14:13
-
-
Save ohsawa0515/3fad4a2a882e966b6744 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 | |
## Xcode command line tool | |
xcode-select --install | |
## Install Homebrew | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
## Add homebrew repository | |
brew tap homebrew/dupes | |
brew tap homebrew/versions | |
brew tap homebrew/binary | |
brew tap josegonzalez/homebrew-php | |
brew tap phinze/homebrew-cask | |
brew tap caskroom/homebrew-versions | |
## Update homebrew version | |
brew update | |
## Update formula | |
brew upgrade | |
## brew install | |
brew install brew-cask | |
brew install wget | |
brew install tmux | |
# brew install phpenv ? | |
# brew install php54 | |
# brew install php55 | |
# brew install php55-apc | |
# brew install php55-xdebug | |
# brew install php55-memcache | |
# brew install php55-memcached | |
# brew install phpunit | |
# brew install php-code-sniffer | |
# brew install phpmd | |
brew install autoconf | |
brew install composer | |
brew install hg | |
brew install tree | |
brew install nkf | |
brew install mpg123 | |
brew install readline | |
brew install rbenv | |
brew install ruby-build | |
# brew install curl-ca-bundle | |
brew install openssl | |
brew install jq | |
brew install git | |
brew install hub | |
brew install gist | |
brew install git-flow | |
# brew install libiconv | |
brew install boot2docker | |
brew install curl | |
# brew install s3fs | |
brew install htop | |
brew install vim | |
# brew install nginx | |
brew install colordiff | |
brew install graphviz | |
brew install autojump | |
brew install ansible | |
brew install zsh | |
## cask install | |
export HOMEBREW_CASK_OPTS="--appdir=/Applications --caskroom=/usr/local/Caskroom" | |
brew cask install appcleaner | |
brew cask install atom | |
brew cask install asepsis | |
brew cask install cakebrew | |
brew cask install clipmenu | |
brew cask install dash | |
brew cask install dropbox | |
brew cask install evernote | |
brew cask install firefox-ja | |
brew cask install flux | |
brew cask install gimp | |
brew cask install google-chrome | |
brew cask install google-japanese-ime | |
brew cask install hyperswitch | |
brew cask install iterm2 | |
brew cask install karabiner | |
brew cask install kobito | |
# brew cask install macports | |
brew cask install licecap | |
brew cask install macvim-kaoriya | |
brew cask install mi | |
brew cask install mysqlworkbench | |
brew cask install openoffice | |
brew cask install phpstorm | |
brew cask install seil | |
brew cask install skype | |
brew cask install sourcetree | |
brew cask install sublime-text3 | |
brew cask install toggldesktop | |
brew cask install vagrant | |
brew cask install virtualbox | |
brew cask install xtrafinder | |
## Remove outdated versions | |
brew cleanup | |
brew cask cleanup | |
## change file name at screenshot | |
defaults write com.apple.screencapture name "SS" | |
## .DS_Store does not create | |
defaults write com.apple.desktopservices DSDontWriteNetworkStores true | |
## Show dotfiles | |
defaults write com.apple.finder AppleShowAllFiles true | |
## aws cli | |
easy_install pip | |
pip install awscli | |
# aws cli completion | |
# git clone https://github.com/aws/aws-cli | |
# complete -C aws-cli/bin/aws_completer aws | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment