summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornoa2025-04-29 15:20:48 +0800
committernoa2025-04-29 15:20:48 +0800
commit5e925f085b4b29f3c2dd752bb2a1191296c0b42e (patch)
treeb43be0aa762385672eb1a899659eab6084c132ba
parent50a29e9f295d66421181fd71794401a567450c96 (diff)
Various system administration and dired tweaks
-rw-r--r--emacs/init.el16
1 files changed, 14 insertions, 2 deletions
diff --git a/emacs/init.el b/emacs/init.el
index d373122..35393d2 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -629,16 +629,23 @@
;;; System administration
+(add-hook 'eshell-mode-hook #'eat-eshell-mode)
+
(use-package proced
- :defer t
+ :commands (proced)
:custom
(proced-auto-update-flag t)
(proced-show-remote-processes t))
+(use-package apt-utils
+ :disabled t
+ :commands (apt-utils-search))
+
+
;;; File management
(use-package dired
- :defer t
+ :commands (dired dired-jump)
:custom
(dired-recursive-deletes 'always) ;; Don't ask me things
(dired-recursive-copies 'always) ;; Don't ask me things
@@ -660,6 +667,11 @@
(dired-mode . hl-line-mode))
)
+(use-package image-dired
+ :defer t
+ :custom
+ (image-dired-thumbnail-storage 'standard))
+
(use-package recentf
:hook (after-init . recentf-mode)
:bind (("C-x C-r" . recentf)))