Skip to content

Instantly share code, notes, and snippets.

@lviggiano
Created November 14, 2012 21:53
Show Gist options
  • Save lviggiano/4075095 to your computer and use it in GitHub Desktop.
Save lviggiano/4075095 to your computer and use it in GitHub Desktop.
Optimizing IntelliJ on Mac OS X
22:48:27 luigi@hal9000:/Applications/IntelliJ IDEA 11.app/Contents$ diff Info.plist.original Info.plist
153c153
< <string>-ea -Xverify:none -Xbootclasspath/a:../lib/boot.jar</string>
---
> <string>-Xverify:none -XX:+UseConcMarkSweepGC -XX:+AggressiveOpts -XX:+CMSClassUnloadingEnabled -XX:+CMSIncrementalMode -XX:+CMSIncrementalPacing -XX:CMSIncrementalDutyCycleMin=0 -XX:-TraceClassUnloading -Xbootclasspath/a:../lib/boot.jar</string>
156c156
< <string>-Xms128m -Xmx512m -XX:MaxPermSize=250m -XX:ReservedCodeCacheSize=64m</string>
---
> <string>-Xms512m -Xmx1024m -XX:MaxPermSize=812m -XX:ReservedCodeCacheSize=64m</string>
159c159
< <string>-Xms128m -Xmx800m -XX:MaxPermSize=350m -XX:ReservedCodeCacheSize=64m -XX:+UseCompressedOops</string>
---
> <string>-Xms512m -Xmx1024m -XX:MaxPermSize=812m -XX:ReservedCodeCacheSize=64m -XX:+UseCompressedOops</string>
Other tips:
- use the "IDEA (4.5 default)" look and feel (not the "OS X" look and feel).
- read more at:
- http://hamletdarcy.blogspot.it/2008/02/10-tips-to-increase-intellij-idea.html
- http://stackoverflow.com/questions/4676604/how-to-improve-intellij-code-editor-speed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment