Skip to content

Instantly share code, notes, and snippets.

@flips
Forked from kennonb/gist:2901006
Last active April 8, 2017 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flips/304c4254b3d43a4cc750a19c26b55b22 to your computer and use it in GitHub Desktop.
Save flips/304c4254b3d43a4cc750a19c26b55b22 to your computer and use it in GitHub Desktop.
Text Editor Font Smoothing (Textmate & Sublime Text 2)
/*
Found this handy little tip here:
http://madeofcode.com/posts/12-snow-leopard-textmate-font-smoothing
*/
/* TextMate */
defaults write com.macromates.textmate AppleFontSmoothing -int 1
/* Sublime Text 2 */
defaults write com.sublimetext.2 AppleFontSmoothing -int 1
/* Sublime Text 3 */
defaults write com.sublimetext.3 AppleFontSmoothing -int 1
@flips
Copy link
Author

flips commented Apr 8, 2017

I prefer running "defaults write com.sublimetext.3 AppleFontSmoothing -int 0" on my MacBook Pro.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment