分享eclipse配置的一些个人经验
分享eclipse配置的一些个人经验电脑配置好java环境以后
官网下载eclipse包
Eclipse Java EE IDE for Web Developers.
Version: Photon Release (4.8.0)
Build id: 20180619-1200
一、汉化
官网下载语言包,对应版本(BabelLanguagePack-eclipse-zh_4.8.0.v20180815020001)复制到eclipse目录里。
二、主题
1、在 窗口(Window) -> 首选项(preferences) -> 常规(General) -> 外观 (Appearance)标签上设置Theme 为 Dark 类型的;
2、在Eclipse Marketplace中搜索 Eclipse Color Theme 1.0.0 安装,在 窗口(Window) -> 首选项(preferences) -> 常规(General) -> 外观 (Appearance) -> Color Theme 中进行设置编辑区的 代码高亮方案;
PS:主题稳定,高亮方案不稳定,不知道是不是个案。
三、增加参考虚线
在https://下载插件sschaef-IndentGuide-f491553
1、将pdt_tools.indentGuide.feature目录下的feature.xml文件复制到pdt_tools.indentGuide目录下;
2、打开pdt_tools.indentGuide目录下的build.properties文件;
3、在bin.includes = src/,\plugin.xml,\META-INF/,\OSGI-INF/ 后面加上feature.xml,效果如下:
source.. = src/
output.. = bin/
bin.includes = src/,\feature.xml
plugin.xml,\feature.xml
META-INF/,\feature.xml
OSGI-INF/feature.xml
4、将pdt_tools.indentGuide.updateSite目录下的所有文件,除了.project,复制到pdt_tools.indentGuide目录下;
5、在eclipse中打开 帮助(Help) -> 安装新软件(Install new software) -> 安装(add )-> Local -> 选择pdt_tools.indentGuide.updateSite目录,点击安装,就OK啦,等待提示重启
6、重启后打开窗口(Window) -> 首选项(preferences) -> 常规(General) -> 编辑器(Editors) -> 文本编辑器(Text Editors), 如果有Indent Guide目录就表示安装好了。