Installations and necessary configs in a fresh Mac.
-
Mac OS Newest version installed? Check for update
-
Xcode (App Store)
- Install Command line tools (Includes GIT)
-
Install Homebrew [Download]
-
Update ZSH via Homebrew and change Terminal Shell
brew info zsh
brew install --disable-etcdir zshAdd the following line into the very end of the file(/etc/shells):
sudo vim /etc/shells
/usr/local/bin/zshChange the default shell:
chsh -s /usr/local/bin/zsh- Install oh-my-zsh
- Create ~/dev folder
- Copy .ssh folder from backup
- Install dotfiles [Download]
- Install Dropbox [Download]
- Install iTerm.app [Download]
- Set tap to click in Trackpad (Prefs/Trackpad/Point & Click) Preview
- Set scrol to natural in Trackpad (Prefs/Trackpad/Scroll & Zoom) Preview
- Change computer name to thiagoxvo in (Prefs/Sharing) Preview
- Set computer to never sleeps in Power Adapter (Prefs/Energy Saver) Preview
- Enable access for assistive devices in (Prefs/Acessibility) Preview
- Configure Mission Control in (Prefs/Mission Control/Hot Corners) Preview
- Set All Controls radion button option in (Prefs/Keyboard) Preview
- Set all notifications to Banners (It's less confuse) (Prefs/Notifications) Preview
- Show hidden files
defaults write com.apple.finder AppleShowAllFiles YES
- Enable key repeat
defaults write -g ApplePressAndHoldEnabled -bool false
- Organize my Finder Favorites
- Show user Library folder
chflags nohidden ~/Library/
- Install Sublime Text 2 [Download]
- Install package control [[Download](http://wbond.net/sublime_packages/ package_control)]
- Clone sublime config
git clone https://github.com/thiagoxvo/sublime-text.git - Create symb link to config
cd ~/'Library/Application Support/Sublime Text 2' rm -R Packages` ln -s ~/dev/sublime-text Packages
- Install Sequel Pro [Download]
- Install Evernote (App Store)
- Install Alfred 2 [Download]
- Install VirtualBox [Download]
- Install uTorrent [Download]
- Install VLC [Download]
- Set as default video player
- Install Twitter (App Store)
- Install Github [Download]
- Install Dash (App Store)
- Install Heroku Toolbelt [Download]
- Install RVM
\curl -L https://get.rvm.io | bash -s stable
- Install NVM [Link]
- Install JDK [[Download]])(http://docs.oracle.com/javase/7/docs/webnotes/install/mac/mac-jdk.html)
- Install Maven [Download]
- Install Eclipse [Download]
- Configure external builds tools
brew install mysql
mysql_install_db --verbose --user=`whoami` --basedir="$(brew --prefix mysql)" --datadir=/usr/local/var/mysql --tmpdir=/tmp
mysql.server start
/usr/local/Cellar/mysql/5.5.27/bin/mysqladmin -u root password 'new-password'
brew info mysql