diff --git a/init.el b/init.el index d5762fd..631503c 100644 --- a/init.el +++ b/init.el @@ -17,7 +17,10 @@ ;;; Load pre-init.el (minimal-emacs-load-user-init "pre-init.el") -;;; Networking +;;; Before package + +;; Increase how much is read from processes in a single chunk +(setq read-process-output-max (* 1024 1024)) ; 1024kb ;; Don't ping things that look like domain names. (setq ffap-machine-p-known 'reject) @@ -98,9 +101,6 @@ (setq truncate-string-ellipsis "…") -;; Increase how much is read from processes in a single chunk -(setq read-process-output-max (* 1024 1024)) ; 1024kb - ;; Improve Emacs' responsiveness by delaying syntax highlighting during input ;; but may reduce visual feedback. (setq redisplay-skip-fontification-on-input t)