Update read-process-output-max before package.el and use-package

This commit is contained in:
James Cherti
2025-02-18 11:31:09 -05:00
parent 69f886e65e
commit 66d7e98c15

View File

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