Add some dired customisations

This commit is contained in:
Gergely Polonkai 2018-08-09 13:48:01 +02:00
parent 085355abef
commit a64603bad9
1 changed files with 16 additions and 0 deletions

View File

@ -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