diff options
author | bd <bdunahu@operationnull.com> | 2024-12-20 23:54:47 -0500 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-12-20 23:54:47 -0500 |
commit | 8c56be82235e4112210b7990ca4dd1f761fa1401 (patch) | |
tree | 22456ec8840dbf2952229d63d8ad6a97076192c6 /.config/emacs/modules/bd--files.el | |
parent | c579503b13bac147e22952a5c0a42ace264e60b6 (diff) |
switch back to setopt rather than custom
Diffstat (limited to '.config/emacs/modules/bd--files.el')
-rw-r--r-- | .config/emacs/modules/bd--files.el | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/.config/emacs/modules/bd--files.el b/.config/emacs/modules/bd--files.el index 6608734..c242487 100644 --- a/.config/emacs/modules/bd--files.el +++ b/.config/emacs/modules/bd--files.el @@ -6,10 +6,10 @@ (use-package recentf :init (recentf-mode 1) - :custom - (recentf-max-saved-items 3500) - (recentf-keep '(recentf-keep-default-predicate remote-file-p)) - (recentf-auto-cleanup 300)) + :config + (setopt recentf-max-saved-items 3500 + recentf-keep '(recentf-keep-default-predicate remote-file-p) + recentf-auto-cleanup 300)) (defun bd/zathura (file) "Open FILE with zathura." @@ -55,15 +55,15 @@ (use-package dired :bind (("C-c d" . dired-jump)) - :custom - (dired-listing-switches "-alhLG --time-style=long-iso --group-directories-first") - (dired-recursive-copies 'always) - (dired-recursive-deletes 'always) - (dired-auto-revert-buffer t) - (dired-dwim-target t) - (dired-guess-shell-alist-user - `((,(regexp-opt '(".pdf")) "pdftotext -nopgbrk -enc UTF-8 -eol unix -layout") - (,(regexp-opt '(".html")) "icecat &")))) + :config + (setopt dired-listing-switches "-alhLG --time-style=long-iso --group-directories-first" + dired-recursive-copies 'always + dired-recursive-deletes 'always + dired-auto-revert-buffer t + dired-dwim-target t + dired-guess-shell-alist-user + `((,(regexp-opt '(".pdf")) "pdftotext -nopgbrk -enc UTF-8 -eol unix -layout") + (,(regexp-opt '(".html")) "icecat &")))) (use-package transmission :defer t |