Dired customizations, foreshadowing

This commit is contained in:
MitchMarq42 2022-06-25 10:59:43 -08:00
parent 07b35c65da
commit 553b3568bf
2 changed files with 17 additions and 0 deletions

View File

@ -115,5 +115,6 @@
;; lower gc threshold again
(setq gc-cons-threshold (* 2 1000 1000))
;; (add-function :before #'after-focus-change-function #'garbage-collect)
;;; init.el ends here

View File

@ -271,6 +271,8 @@
:after (org company))
(use-package org-modern
:hook (org-mode . org-modern-mode))
(use-package ox-hugo
:after ox)
;; cheaty key popups
(use-package which-key
@ -573,5 +575,19 @@
:states 'normal
"RET" 'hkey-either))
(use-package dconf-mode
:straight
(:type git
:repo "https://git.mitchmarq42.xyz/mitch/dconf-mode.el"))
(use-package dired
:straight (:type built-in)
:commands dired
:custom
(dired-always-read-filesystem t)
(dired-vc-rename-file t)
:hook (dired-mode . dired-hide-details-mode)
(dired-mode . wdired-mode))
(provide 'mitch-packages)
;;; mitch-packages.el ends here