From d20e1907f0c5a2211f4e5bb2cc0505420fdde6a8 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sun, 23 Aug 2020 17:16:09 +0100 Subject: +dired setup in core --- Emacs/.config/emacs/config.org | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'Emacs/.config/emacs/config.org') diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index 9170899..0aa7b9b 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -506,7 +506,7 @@ to use ido here) and allows you to switch between them. (use-package amx :hook (after-init-hook . amx-mode)) #+end_src -* Dired +** Dired Setup for dired. Firstly, as it's an inbuilt package don't let straight try and download it. Make dired-hide-details-mode the default mode when dired-mode, as it removes the clutter. Create a @@ -518,15 +518,16 @@ I'd like to adjust) (use-package dired :straight nil :hook (dired-mode-hook . dired-hide-details-mode) - :after evil-collection :general (leader :infix "d" "f" #'find-dired - "D" #'dired-other-window + "D" #'dired-other-frame "d" #'dired-jump) :config - (evil-collection-dired-setup)) + (with-eval-after-load "evil-collection" + (evil-collection-dired-setup))) +#+end_src #+end_src * Hydra Use hydras for stuff that I use often, currently buffer manipulation -- cgit v1.2.3-13-gbd6f