Created
November 14, 2012 21:53
-
-
Save lviggiano/4075095 to your computer and use it in GitHub Desktop.
Optimizing IntelliJ on Mac OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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