ENH raise file warning limit to 1GB

This commit is contained in:
Nathan Dwarshuis 2020-11-13 09:44:53 -05:00
parent 682e5621cf
commit bb6005501e
1 changed files with 7 additions and 0 deletions

View File

@ -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