LoginSignup
1
1

More than 5 years have passed since last update.

gentooでemacs-eclim

Last updated at Posted at 2016-04-03

install

このオーバーレイのeclim
https://github.com/andjscott/overlays/tree/master/dev-util/eclim
と依存関係で必要になるeclipseを
https://github.com/jorgicio/jorgicio-gentoo/tree/master/dev-util/eclipse-sdk-bin
のebuildを使ってインストール

さもなくば,この2つのebuildをコピーしてまとめてある
https://github.com/niitsuma/niitsuma-overlay
から
emerge eclim

最後にemacsからM-x package-installでemacs-eclimをインストール

設定

.barhrc  にeclipseのインストール先のパスを追加

export ECLIPSE_HOME=/opt/eclipse-sdk-bin-4.5
export PATH="$ECLIPSE_HOME:$PATH"

.emacs

(require 'eclim)
(add-hook 'java-mode-hook 'eclim-mode)
(require 'eclimd)

起動

emacs から
M-x start-eclimd
M-x eclim-project-mode
で~/workspaceのプロジェクト一覧が表示される

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1