[emacs][wip] break out Help and ElDoc
authorAmin Bandali <bandali@gnu.org>
Mon, 24 Dec 2018 19:45:06 +0000 (14:45 -0500)
committerAmin Bandali <bandali@gnu.org>
Mon, 24 Dec 2018 19:45:06 +0000 (14:45 -0500)
init.org

index 8484b7b..dc1e7dd 100644 (file)
--- a/init.org
+++ b/init.org
@@ -1194,6 +1194,16 @@ There's no way I could top that, so I won't attempt to.
   :hook (dired-mode . dired-hide-details-mode))
 #+end_src
 
+*** Help
+
+#+begin_src emacs-lisp
+(use-feature help
+  :defer t
+  :config
+  (temp-buffer-resize-mode)
+  (setq help-window-select t))
+#+end_src
+
 *** Borg's =layer/essentials=
 :PROPERTIES:
 :CUSTOM_ID: borg-essentials
@@ -1205,16 +1215,6 @@ TODO: break this giant source block down into individual org sections.
 (use-package dash
   :config (dash-enable-font-lock))
 
-(use-feature eldoc
-  :when (version< "25" emacs-version)
-  :config (global-eldoc-mode))
-
-(use-feature help
-  :defer t
-  :config
-  (temp-buffer-resize-mode)
-  (setq help-window-select t))
-
 (progn ;    `isearch'
   (setq isearch-allow-scroll t))
 
@@ -1273,6 +1273,16 @@ Highlight uncommitted changes in the left fringe.
   :hook (magit-post-refresh . diff-hl-magit-post-refresh))
 #+end_src
 
+** ElDoc
+
+Display Lisp objects at point in the echo area.
+
+#+begin_src emacs-lisp
+(use-feature eldoc
+  :when (version< "25" emacs-version)
+  :config (global-eldoc-mode))
+#+end_src
+
 ** =savehist=
 
 Save minibuffer history.