Disabling window animations in Mac OS X LionEdit

Lion introduces new window animations which make things like spawning new windows frustratingly sluggish on underpowered or overloaded machines (and mine generally tends to be both of those things!). Instead of appearing instantly, windows will noticeably stutter as they grow, shrink or move into position.

Generally, Apple’s own applications like Safari and the Finder will "zoom" new windows into existence and "zoom" them out upon closing. Mail.app also has a special animation for message windows upon sending, in which they are seen flying up towards the top of the screen; that particular one tends to be much smoother and less noticeable, probably because translating pixels across the screen is considerably easier that scaling them.

Thankfully, there is a way to turn them off:

Turning animations off

$ defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool NO

This will add the required setting to your ~/Library/GlobalPreferences.plist file.

Relatedly, there is an animation Mail.app that can be turned off with:

$ defaults write com.apple.Mail DisableReplyAnimations -bool YES

Turning animations on

$ defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool YES

And relatedly:

$ defaults write com.apple.Mail DisableReplyAnimations -bool NO

Source