Restore home folder from backup. You better have a backup.
Important files and folders:
- ~/.bash_profile
- ~/.ssh/
- ~/Library/Preferences/
- ~/Library/Application Support/
Walk through OS X Preferences GUI and setup all accounts you need.
// Disable window animations
defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false
// Enable repeat on keydown
defaults write -g ApplePressAndHoldEnabled -bool false
// Use current directory as default search scope in Finder
defaults write com.apple.finder FXDefaultSearchScope -string "SCcf"
// Show Path bar in Finder
defaults write com.apple.finder ShowPathbar -bool true
// Disable sound effect when changing volume
defaults write -g com.apple.sound.beep.feedback -integer 0
// Show Status bar in Finder
defaults write com.apple.finder ShowStatusBar -bool true
// Set a blazingly fast keyboard repeat rate
defaults write NSGlobalDomain KeyRepeat -int 0.02
// Set a shorter Delay until key repeat
defaults write NSGlobalDomain InitialKeyRepeat -int 12
// Disable disk image verification
defaults write com.apple.frameworks.diskimages skip-verify -bool true &&
defaults write com.apple.frameworks.diskimages skip-verify-locked -bool true &&
defaults write com.apple.frameworks.diskimages skip-verify-remote -bool true
// Disable Safari’s thumbnail cache for History and Top Sites
defaults write com.apple.Safari DebugSnapshotsUpdatePolicy -int 2
// Enable Safari’s debug menu
defaults write com.apple.Safari IncludeInternalDebugMenu -bool true
// Add a context menu item for showing the Web Inspector in web views
defaults write NSGlobalDomain WebKitDeveloperExtras -bool true
// Show the ~/Library folder
chflags nohidden ~/Library
// Show absolute path in finder's title bar.
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" && brew install wget brew-cask
brew cask install a-better-finder-rename adobe-creative-cloud adobe-photoshop-lightroom adobe-reader adobe-air alfred arq caffeine carbon-copy-cloner coconutbattery codekit daisydisk dash diffmerge firefox forklift github google-chrome google-drive imageoptim iterm2 kindle monotype-skyfonts onepassword owncloud sequel-pro skype sublime-text the-unarchiver vagrant viscosity virtualbox vlc
```
### Sublime Text 3
Install useful Snippets
`git clone [email protected]:bytestudios/sublime-snippets.git ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/Byte`
User Settings
```
{
"animation_enabled": false,
"auto_find_in_selection": true,
"bold_folder_labels": false,
"color_scheme": "Packages/Solarized Color Scheme/Solarized (dark).tmTheme",
"create_window_at_startup": false,
"find_selected_text": true,
"highlight_line": true,
"highlight_modified_tabs": true,
"ignored_packages": [
"Vintage"
],
"line_padding_bottom": 2,
"line_padding_top": 2,
"open_files_in_new_window": false,
"show_full_path": true,
"show_tab_close_buttons": false,
"soda_folder_icons": true,
"theme": "Soda Light 3.sublime-theme",
"tree_animation_enabled": false,
"trim_trailing_white_space_on_save": true,
"use_simple_full_screen": true,
"word_separators": "./\\()\"'-:,.;<>~!@#$%^&*|+=[]{}`~?",
"word_wrap": false,
"soda_folder_icons": true,
}
```
Package Control
{
"in_process_packages":
[
],
"installed_packages":
[
"Alignment",
"CSS3",
"DocBlockr",
"Emmet",
"Emmet Css Snippets",
"GitGutter",
"jQuery",
"jQuery Snippets pack",
"LESS",
"Package Control",
"Predawn",
"SideBarEnhancements",
"Solarized Color Scheme",
"SublimeLinter",
"SublimeLinter-php",
"SublimeLinter-phplint",
"Syntax Highlighting for Sass",
"Theme - Soda",
"Theme - Sodarized",
"WordPress",
"WordPress Readme to Markdown"
]
}
```
Cudos to:
https://gist.github.com/g3d/2709563
https://gist.github.com/saetia/1623487