diff options
| author | Amin Bandali <bandali@gnu.org> | 2018-12-24 14:24:27 -0500 | 
|---|---|---|
| committer | Amin Bandali <bandali@gnu.org> | 2018-12-24 14:24:27 -0500 | 
| commit | 41d73018804a062cb1cdd328a6f0f8230e98b080 (patch) | |
| tree | 4907de0fcf6e76bc621675e2e9ac5ad163ba078e | |
| parent | 633dee4dc61935600273cf5035d05eda15ebc792 (diff) | |
| download | configs-41d73018804a062cb1cdd328a6f0f8230e98b080.tar.gz configs-41d73018804a062cb1cdd328a6f0f8230e98b080.tar.xz configs-41d73018804a062cb1cdd328a6f0f8230e98b080.zip  | |
[emacs][wip] bring layer/essentials under Core and break out Dired
Diffstat (limited to '')
| -rw-r--r-- | init.org | 34 | 
1 files changed, 19 insertions, 15 deletions
@@ -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)  | 
