增强Eclipse的自动代码提示功能 
    默认下, 只有按"."或"Alt + /"才出现代码提示功能, 不够强大, 作小小设置, 可将代码提示功能像VS的一样方便    
    1. Window -> Preferences -> Java -> Editor -> Content Assist    
    2. 将"Auto Activation triggers for java"设置为".abc"(默认是"."), 点"Apply"应用    
    3. 导出目前的Eclipse配置文件: File -> Export -> General -> Perferences, 选择保存路径, 保存得到*.epf文件    
  [公司项目的IDE使用此功能] √ 4. 用文本编辑器打开刚才保存的*.epf文件, 搜索".abc", 将".abc"部分改为    
        ".abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ(," (以上为自动提示的触发字符,    
        根据个人习惯设置), 保存此配置文件(个人觉得不太好用,容易出错)    
    5. 导入此配置文件: File -> import -> General -> Perferences, 导入修改后的配置文件.    
    第一个选项为反应时间,可设为100左右(默认200)
设置工作空间的项目编码, 防止出现乱码 
    Window - Preferences - General - Workspace     
    将"Text file encoding"选为"Other" - "UTF-8"     
    改变现有项目的编码的步骤: 右击项目属性, 选择"Text file encoding"的编码  
√关闭自动更新 
    1, Eclipse:     
        Windows –> Perferences–> Install/Update -> Automatic Updates     
        不勾选"Automatically find new updates and notify me"     
    2, Myeclipse:     
        1)Windows –> Perferences–> MyEclipse... -> Community Essentials     
     &nb sp;  不勾选"Search for new features at startup"     
        2)Windows –> Perferences–> MyEclipse... -> Maven4MyEclipse     
        不勾选"Download repository index updates on startup"
√1. 取消系统的自动折叠
Window->Preferences-> Java->Editor->Folding: Enable folding    
2. 取消按"."后自动激活提示功能。这样会有些提高速度
Window->Preferences-> Java->Editor->Content Assist: Enable auto activation    
3. 关闭不常用的工程     
一些不常用的工程打开的时候,也会影响你正在使用工程的操作速度。     
√4. 设置启动参数     
起动的时候 加上参数:eclipse.exe -vmargs -Xverify:none -XX:+UseParallelGC -XX:PermSize=20M     
-Xms100M - Xmx200M     
如果你的内存是2G以上的。可以将最后一个参数Xmx200M改为 Xmx512M     
这个在你的起动快捷键的属性里设置。     
√5. 取消自动validation(合法性检查)     
windows-->perferences-->myeclipse--> validation     
除开Manual下面的复选框全部选中之外,其他全部不选     
6. 取消Plugin     
进入Preferences把Plug-in Development>Target Platform> plug-in里跟自己无关或者暂且不用的plug     
-in去掉勾选,我这里共400多个中去掉了100多个。     
7. 设置Edit Mode     
MyEclipse5.0.1GA_E3.2 之前的:Window->Preferences->-->myeclipse->files & Editors下把跟编辑有关的所有     
的Edit Modes 设为 Disable Design Mode     
8. 设置视图     
打开Customize Perspective里自己没用到的选项自己去掉勾选。
原文:http://www.cnblogs.com/bella-life-blog/p/3818542.html