emacs: don't use file-name-handler-alist, do use a lower gc-cons-threshold for normal use

master
Alison G. Watson 2020-10-02 13:41:24 -06:00
padre 19717e5cb0
commit 787f98342f
Se han modificado 2 ficheros con 6 adiciones y 2 borrados

Ver fichero

@ -5,7 +5,8 @@
backup-directory-alist `((".*" . ,usr-backup))
create-lockfiles nil
custom-file usr-custom
gc-cons-threshold 64000000
file-name-handler-alist nil
gc-cons-threshold (* 200 1000 1000)
global-mark-ring-max 1024
inhibit-compacting-font-caches t
inhibit-startup-screen t
@ -51,7 +52,7 @@
(set-fontset-font t '(#x2e80 . #x9fff) "Noto Sans CJK JP")
(setq agw-mode-line-family
(if (string-equal system-type "windows-nt")
(if (eq system-type 'windows-nt)
"Noto Mono"
"Iosevka"))

Ver fichero

@ -402,4 +402,7 @@
:config
(fringe-mode 0))
;; end of init
(setq gc-cons-threshold (* 1 1000 1000))
;; EOF