Skip to content

Instantly share code, notes, and snippets.

@MTuner
Last active July 17, 2024 22:39
Show Gist options
  • Save MTuner/3ee1e24b58808b2cd6b17c3a176b832e to your computer and use it in GitHub Desktop.
Save MTuner/3ee1e24b58808b2cd6b17c3a176b832e to your computer and use it in GitHub Desktop.
Fixing font rendering/aliasing in Sublime Text in MacOS Mojave
Apple removed colored sub-pixel antialiasing in MacOS Mojave
(https://developer.apple.com/videos/play/wwdc2018/209/ starting from ~28min)
To make fonts look normal in Sublime Text, add to Preferences:
// For the editor
"font_options": [ "gray_antialias" ],
// For the sidebar / other elements
"theme_font_options": [ "gray_antialias" ],
@bartkl
Copy link

bartkl commented Nov 2, 2022

Oh wow, this helped me on Linux as well! Thanks!

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