develog

[Eclipse] eclipse 설정 본문

IDE/eclipse

[Eclipse] eclipse 설정

냐옴 2018. 9. 4. 15:20

■ eclipse.ini

-vm

C:/Program Files/Java/jdk1.8.0_161/bin/javaw.exe


-Xms1024m

-Xmx1024m

-XX:PermSize=256m

-XX:MaxPermSize=256m

-XX:NewSize=128m

-XX:MaxNewSize=128m

-XX:+UseParallelGC

-XX:+AggressiveOpts

-XX:-UseConcMarkSweepGC

 -server


■ Preferences

▶메모리 사용량 표시

Preferences > General

- Show Heap Status 체크


▶animation off

Preferences > General > Appearance

- Enable animations 체크 해제


▶글꼴 변경

Preferences > General > Appearance > Colors and Fonts

- Basic > Text Font > Edit


▶줄 번호 사용

Preferences > General > Editors > Text Editors

- Show line numbers 체크


▶Spell checking off

Preferences > General > Editors > Text Editors > Spelling

- Enable spell checking 체크 해제


▶Startup and Shutdown off

Preferences > General > Startup and Shutdown

- 필요없는거 체크 해제


▶Refresh

Preferences > General > Workspace

- Refresh using native hooks or polling 채크 해제

- Refresh on access 체크


▶코드 자동완성

Preferences > Java > Editor > Content Assist > Insertion

- Add import instead of qualified name 체크

Preferences > Java > Editor > Content Assist > Auto Activation

- Enable auto activation 체크 해제


▶Code folding off

Preferences > Java > Editor > Folding

- Enable folding 체크 해제


▶자동 업데이트 off

Preferences > Install/Update > Automatic Updates

- Automatically find new updates and notify me 체크 해제


▶Validation off

Preferences > Validation

- Manual, Build 에서 안쓰는거 체크 해제

- Build 항목은 필요한 것만 체크


http://www.nicolasbize.com/blog/7-tips-to-speed-up-eclipse/


Comments