summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-11-27 12:25:43 -0600
committerCase Duckworth2020-11-27 12:25:43 -0600
commit58bce993949ca9a97808e69dc19ab2e84d8b3f14 (patch)
tree2210363432c7eb2716f0e8f7953f35c234c5b34d /config.org
parentMerge branch 'master' of https://git.sr.ht/~acdw/.emacs.d (diff)
downloademacs-58bce993949ca9a97808e69dc19ab2e84d8b3f14.tar.gz
emacs-58bce993949ca9a97808e69dc19ab2e84d8b3f14.zip
Wrap dired customizations in with-eval-after-load
Diffstat (limited to 'config.org')
-rw-r--r--config.org9
1 files changed, 5 insertions, 4 deletions
diff --git a/config.org b/config.org index 1404afc..c756dbc 100644 --- a/config.org +++ b/config.org
@@ -1096,11 +1096,12 @@ from [[https://github.com/alphapapa/unpackaged.el#org-return-dwim][unpackaged.el
1096** Dired 1096** Dired
1097 1097
1098#+begin_src emacs-lisp 1098#+begin_src emacs-lisp
1099 (cuss dired-dwim-target t) 1099 (with-eval-after-load 'dired
1100 (cuss dired-listing-switches "-alDh") 1100 (cuss dired-dwim-target t)
1101 (cuss dired-listing-switches "-alDh")
1101 1102
1102 (cuss wdired-allow-to-change-permissions t) 1103 (cuss wdired-allow-to-change-permissions t)
1103 (bind-key "C-c w" #'wdired-change-to-wdired-mode dired-mode-map) 1104 (bind-key "C-c w" #'wdired-change-to-wdired-mode 'dired-mode-map))
1104#+end_src 1105#+end_src
1105 1106
1106** Proced 1107** Proced