From cd7e8b222678e56f13a85aaf6bbce1ff3e2f046b Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 9 Nov 2025 11:35:53 +0100 Subject: [PATCH] Postpone large file warnings My Org archive is large enough to trigger this warning every time I open it and it's annoying. Emacs can handle that file size easily, so let's increase that limit. --- init.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.el b/init.el index a702da4..b738e98 100644 --- a/init.el +++ b/init.el @@ -2223,8 +2223,8 @@ Note that this workaround is incomplete, as explained in this comment." ;;* File Handling -(setq large-file-warning-threshold 10000000 - delete-by-moving-to-trash t) +(setopt large-file-warning-threshold (* 50 1024 1024) + delete-by-moving-to-trash t) ;; Backups and Autosave (defvar backup-dir (expand-file-name "ebackup/" emacs-d))