:hook (dired-mode . dired-hide-details-mode))
#+end_src
-*** =diff-hl=
-
-Highlight uncommitted changes in the left fringe.
-
-#+begin_src emacs-lisp
-(use-package diff-hl
- :config
- (setq diff-hl-draw-borders nil)
- (global-diff-hl-mode)
- (add-hook 'magit-post-refresh-hook 'diff-hl-magit-post-refresh t))
-#+end_src
-
*** Borg's =layer/essentials=
:PROPERTIES:
:CUSTOM_ID: borg-essentials
:CUSTOM_ID: editing
:END:
+** =diff-hl=
+
+Highlight uncommitted changes in the left fringe.
+
+#+begin_src emacs-lisp
+(use-package diff-hl
+ :config
+ (setq diff-hl-draw-borders nil)
+ (global-diff-hl-mode)
+ :hook (magit-post-refresh . diff-hl-magit-post-refresh))
+#+end_src
+
** =savehist=
Save minibuffer history.