Skip to content

Instantly share code, notes, and snippets.

@zserghei
Last active December 15, 2015 08:09
Show Gist options
  • Save zserghei/5228629 to your computer and use it in GitHub Desktop.
Save zserghei/5228629 to your computer and use it in GitHub Desktop.
Eclipse performance tips
  • Add the next lines to eclipse.ini:
    -Xverify:none
    -Xms512m
    -Xmx1024m
    -XX:MaxPermSize 368m
  • Open Window/Preferences/Java/Compiler/Building. Change "Maximum number of problems reported per compilation unit" from 100 to 10.
  • Open Window/Preferences/General/Appearance/Label Decorations and disable decorations that are not used.
  • Open Window/Preferences/General/Appearance. Uncheck "Enable animations".
  • Open Window/Preferences/General/Workspace/Local History. Limit history size to 7 days and 20 entries per file.
  • Open Window/Preferences/Java/Editor/Content Assist/Advanced. Uncheck unused proposals.
  • Close unused perspectives.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment