Default to Source Code Pro and Source Sans Pro size 13pt and ~1.1x line-height for better readibility.
Run IntelliJ based IDEs on JVM 1.6 for sub-pixel anti-aliasing on LCDs.
Use OTF versions of Adobe's Source fonts.
Grab the latest releases of Source Code Pro & Source Sans Pro:
- https://github.com/adobe-fonts/source-code-pro/releases
- https://github.com/adobe-fonts/source-sans-pro/releases
Copy the OTF files to your system's fonts folder and JVM's fonts folder.
e.g. On OSX:
Get the JVM 1.6 home folder: /usr/libexec/java_home -v 1.6
will typically resolve to /System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/. You might have to create the lib/fonts/ folder.
cp SourceCodePro-*.otf ~/Library/Fonts
cp SourceCodePro-*.otf `/usr/libexec/java_home -v 1.6`/Home/lib/fonts/
Grab my fork of the amazing base-16 builder by Chris Kempson to build some themes, and copy them to your IntelliJ/AS preferences folder.
e.g. On OSX:
git clone https://github.com/halfvector/base16-builder.git
cd base16-builder
./base16
This will generate ready-to-use themes in the output folder. Install the idea color schemes in Android Studio:
cp output/idea/base16-*.dark.icls ~/Library/Preferences/AndroidStudio/colors
Replace /AndroidStudio/ with with your IntelliJ product, i.e. if you are using IntelliJ Idea 14 Community Edition, the destination may be:
cp output/idea/base16-*.dark.icls ~/Library/Preferences/IdeaIC14/colors
thanks man. work well!