aboutsummaryrefslogtreecommitdiff
path: root/Emacs
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2020-08-23 17:16:09 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2020-08-23 17:16:09 +0100
commitd20e1907f0c5a2211f4e5bb2cc0505420fdde6a8 (patch)
tree9aa2c7e421d50de08bb9bc8562456c9b38c7c2a2 /Emacs
parent97ba4c8bcfd0badec53fe5589a87038dbd0fae11 (diff)
downloaddotfiles-d20e1907f0c5a2211f4e5bb2cc0505420fdde6a8.tar.gz
dotfiles-d20e1907f0c5a2211f4e5bb2cc0505420fdde6a8.tar.bz2
dotfiles-d20e1907f0c5a2211f4e5bb2cc0505420fdde6a8.zip
+dired setup in core
Diffstat (limited to 'Emacs')
-rw-r--r--Emacs/.config/emacs/config.org9
1 files changed, 5 insertions, 4 deletions
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