Move eldoc settings to org

This commit is contained in:
Tom Willemsen 2013-01-28 00:18:29 +01:00
parent 35fc2e3378
commit 5a1e9f2ea8
2 changed files with 8 additions and 1 deletions

View file

@ -23,7 +23,6 @@
"Face for the supposedly empty line in commit messages."
:group 'local)
(eval-after-load "eldoc" '(diminish 'eldoc-mode))
(eval-after-load "em-term" '(add-to-list 'eshell-visual-commands "unison"))
(eval-after-load "emms-source-file" '(oni:emms-init))
(eval-after-load "flymake" '(oni:flymake-init))

View file

@ -74,3 +74,11 @@
#+BEGIN_SRC emacs-lisp :tangle init2.el
(defalias 'dabbrev-expand 'hippie-expand)
#+END_SRC
Don't show it when ~eldoc~ is running, I almost assume that it is
whenever I'm working in a mode that supports it anyway. This should
only execute once ~eldoc~ has been loaded.
#+BEGIN_SRC emacs-lisp :tangle init2.el
(eval-after-load "eldoc" '(diminish 'eldoc-mode))
#+END_SRC