[emacs][wip] bring layer/essentials under Core and break out Dired
authorAmin Bandali <bandali@gnu.org>
Mon, 24 Dec 2018 19:24:27 +0000 (14:24 -0500)
committerAmin Bandali <bandali@gnu.org>
Mon, 24 Dec 2018 19:24:27 +0000 (14:24 -0500)
init.org

index 08b1404..c0078b4 100644 (file)
--- a/init.org
+++ b/init.org
@@ -1138,23 +1138,9 @@ There's no way I could top that, so I won't attempt to.
    ("s"   . outline-show-subtree)))
 #+end_src
 
-* Borg's =layer/essentials=
-:PROPERTIES:
-:CUSTOM_ID: borg-essentials
-:END:
-
-TODO: break this giant source block down into individual org sections.
+*** Dired
 
 #+begin_src emacs-lisp
-(use-package dash
-  :config (dash-enable-font-lock))
-
-(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))
-
 (use-feature ls-lisp
   :custom (ls-lisp-dirs-first t))
 
@@ -1194,6 +1180,24 @@ TODO: break this giant source block down into individual org sections.
                         (interactive)
                         (a/dired-start-process "zathura"))))
   :hook (dired-mode . dired-hide-details-mode))
+#+end_src
+
+*** Borg's =layer/essentials=
+:PROPERTIES:
+:CUSTOM_ID: borg-essentials
+:END:
+
+TODO: break this giant source block down into individual org sections.
+
+#+begin_src emacs-lisp
+(use-package dash
+  :config (dash-enable-font-lock))
+
+(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))
 
 (use-feature eldoc
   :when (version< "25" emacs-version)