From f0c6a50a321fdf652351070069be3195263b7686 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Sat, 31 Jan 2026 16:37:45 -0500 Subject: [PATCH] init.el: Move a few sexp to the Misc section --- init.el | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/init.el b/init.el index 2012633..119c455 100644 --- a/init.el +++ b/init.el @@ -118,6 +118,14 @@ ;; Benefit: you never lose bookmarks if Emacs crashes. (setq bookmark-save-flag 1) +(setq uniquify-buffer-name-style 'forward) + +(setq display-time-default-load-average nil) ; Omit load average + +;; Disable fontification during user input to reduce lag in large buffers. +;; Also helps marginally with scrolling performance. +(setq redisplay-skip-fontification-on-input t) + ;;; Tramp (setq tramp-verbose 1) @@ -140,10 +148,6 @@ (setq split-width-threshold 170 split-height-threshold nil) -;;; Buffers - -(setq uniquify-buffer-name-style 'forward) - ;;; comint (general command interpreter in a window) (setq ansi-color-for-comint-mode t @@ -255,12 +259,6 @@ window-divider-default-places t window-divider-default-right-width 1) -;;; Fontification - -;; Disable fontification during user input to reduce lag in large buffers. -;; Also helps marginally with scrolling performance. -(setq redisplay-skip-fontification-on-input t) - ;;; Scrolling ;; Enables faster scrolling. This may result in brief periods of inaccurate @@ -381,10 +379,6 @@ ;; Eliminate delay before highlighting search matches (setq lazy-highlight-initial-delay 0) -;;; Modeline - -(setq display-time-default-load-average nil) ; Omit load average - ;;; Filetype ;; Do not notify the user each time Python tries to guess the indentation offset