From bb6005501e92e7095f12a587bd4d3e832d8d1971 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Fri, 13 Nov 2020 09:44:53 -0500 Subject: [PATCH] ENH raise file warning limit to 1GB --- etc/conf.org | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/etc/conf.org b/etc/conf.org index ea9f938..6b00c6b 100644 --- a/etc/conf.org +++ b/etc/conf.org @@ -24,6 +24,7 @@ This is my personal emacs config. It is quite massive. Please use the table of c - [[#user-information][user information]] - [[#autosave][autosave]] - [[#async][async]] + - [[#file-io][file IO]] - [[#editing][editing]] - [[#standardization][standardization]] - [[#auto-completion][auto completion]] @@ -674,6 +675,12 @@ Allows certain processes to run in multithreaded manner. For things like IO this :init (dired-async-mode 1)) #+END_SRC +** file IO +Emacs will warn user when opening a file over a certain limit. Raise this to 1GB. +#+begin_src emacs-lisp +(setq large-file-warning-threshold 1000000000) +#+end_src + * editing For options that specifically affect programming or editing modes ** standardization