From 55d6155efe68cd78cfda2d7b771b32aacdf662cf Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Wed, 2 Oct 2024 12:49:43 -0400 Subject: [PATCH] Move read-process-output-max to init.el --- early-init.el | 3 --- init.el | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/early-init.el b/early-init.el index edaca22..f37e189 100644 --- a/early-init.el +++ b/early-init.el @@ -93,9 +93,6 @@ When set to non-nil, Emacs will automatically call `package-initialize' and ;; Prefer loading newer compiled files (setq load-prefer-newer t) -;; Increase how much is read from processes in a single chunk (default is 4kb). -(setq read-process-output-max (* 512 1024)) ; 512kb - ;; Reduce rendering/line scan work by not rendering cursors or regions in ;; non-focused windows. (setq-default cursor-in-non-selected-windows nil) diff --git a/init.el b/init.el index ffd1ef7..625eb99 100644 --- a/init.el +++ b/init.el @@ -93,6 +93,9 @@ ;; Delete by moving to trash in interactive mode (setq delete-by-moving-to-trash (not noninteractive)) +;; Increase how much is read from processes in a single chunk (default is 4kb). +(setq read-process-output-max (* 512 1024)) ; 512kb + ;;; Files ;; Disable the warning "X and Y are the same file". Ignoring this warning is