projects
/
~bandali
/
configs
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
5023c31
)
[emacs][wip] break out Help and ElDoc
author
Amin Bandali
<bandali@gnu.org>
Mon, 24 Dec 2018 19:45:06 +0000
(14:45 -0500)
committer
Amin Bandali
<bandali@gnu.org>
Mon, 24 Dec 2018 19:45:06 +0000
(14:45 -0500)
init.org
patch
|
blob
|
blame
|
history
diff --git
a/init.org
b/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
: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
*** 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-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))
(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
: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.
** =savehist=
Save minibuffer history.