Show Hidden Files
Always show dotfiles in Finder.
defaults write com.apple.finder AppleShowAllFiles YES && killall Finder
Show Full Path in Finder
See exactly where you are in the title bar.
defaults write com.apple.finder _FXShowPosixPathInTitle -bool true && killall Finder
Ultra-Fast Key Repeat
Make the cursor move faster when holding keys.
defaults write NSGlobalDomain KeyRepeat -int 1 && defaults write NSGlobalDomain InitialKeyRepeat -int 10
Disable Auto-Correct
Prevent macOS from "fixing" your code/words.
defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false
Screenshot Location
Keep your desktop clean. Save to ~/Screenshots.
mkdir -p ~/Screenshots && defaults write com.apple.screencapture location ~/Screenshots && killall SystemUIServer
Avoid .DS_Store on Network
Don't litter network drives with hidden files.
defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true
Expand Save Panel
Always show the full file browser when saving.
defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true && defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode2 -bool true
Folders First in Finder
Sort folders above files.
defaults write com.apple.finder _FXSortFoldersFirst -bool true && killall Finder
Faster Dock Animation
Reduce the autohide delay for a snappier feel.
defaults write com.apple.dock autohide-time-modifier -float 0.15 && killall Dock
Hide Desktop Icons
Keep a clean workspace.
defaults write com.apple.finder CreateDesktop -bool false && killall Finder