ENH raise file warning limit to 1GB
This commit is contained in:
parent
682e5621cf
commit
bb6005501e
|
@ -24,6 +24,7 @@ This is my personal emacs config. It is quite massive. Please use the table of c
|
||||||
- [[#user-information][user information]]
|
- [[#user-information][user information]]
|
||||||
- [[#autosave][autosave]]
|
- [[#autosave][autosave]]
|
||||||
- [[#async][async]]
|
- [[#async][async]]
|
||||||
|
- [[#file-io][file IO]]
|
||||||
- [[#editing][editing]]
|
- [[#editing][editing]]
|
||||||
- [[#standardization][standardization]]
|
- [[#standardization][standardization]]
|
||||||
- [[#auto-completion][auto completion]]
|
- [[#auto-completion][auto completion]]
|
||||||
|
@ -674,6 +675,12 @@ Allows certain processes to run in multithreaded manner. For things like IO this
|
||||||
:init
|
:init
|
||||||
(dired-async-mode 1))
|
(dired-async-mode 1))
|
||||||
#+END_SRC
|
#+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
|
* editing
|
||||||
For options that specifically affect programming or editing modes
|
For options that specifically affect programming or editing modes
|
||||||
** standardization
|
** standardization
|
||||||
|
|
Loading…
Reference in New Issue