diff --git a/configuration.org b/configuration.org index 986d513..e5909ad 100644 --- a/configuration.org +++ b/configuration.org @@ -1262,6 +1262,22 @@ The cookies are from the Hungarian version an ancient MS-DOS based program calle url)))))) #+END_SRC +** Dired customisation + +#+BEGIN_SRC emacs-lisp +(use-package dired + :ensure nil + :config + (setq dired-dwim-target t) + :bind + (:map dired-mode-map + ("RET" . dired-find-alternate-file) + ("^" . (lambda () (interactive) (find-alternate-file ".."))))) + +(use-package dired-x + :ensure nil) +#+END_SRC + * ~use-package~ packages ** Automatically upgrade packages every week