Created
August 31, 2016 23:49
-
-
Save yurighensev/874efef24734b7471c24edbe1dabd8c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defun java/init-eclim () | |
(use-package eclim | |
:defer t | |
:diminish eclim-mode | |
:init (add-hook 'java-mode-hook 'eclim-mode) | |
:config | |
(progn | |
(setq help-at-pt-display-when-idle t | |
help-at-pt-timer-delay 0.1) | |
(help-at-pt-set-timer) | |
(add-to-list 'minor-mode-alist | |
'(eclim-mode (:eval (eclim-modeline-string)))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment