Move Dired related packages from configuration.org to init.el

This commit is contained in:
2025-06-03 17:40:56 +02:00
parent 42fa510428
commit f1592e491a
2 changed files with 25 additions and 51 deletions

25
init.el
View File

@@ -1403,6 +1403,31 @@ order."
:config
(push (org-projectile-project-todo-entry) org-capture-templates))
;; Dired extras
(use-package dired-collapse)
(use-package dired-du)
(use-package dired-git-info
:bind
(:map dired-mode-map
(")" . dired-git-info-mode)))
(use-package dired-hide-dotfiles
:bind
(:map dired-mode-map
("." . dired-hide-dotfiles-mode)))
(use-package dired-rainbow
:config
(dired-rainbow-define-chmod executable-unix "Green" "-.*x.*"))
(use-package dired-k
:bind
(:map dired-mode-map
("K" . dired-k)))
;; I started moving my configuration to this Org file. Its easier to document this way.
(org-babel-load-file (expand-file-name "configuration.org" user-emacs-directory))