init.el: Move a few sexp to the Misc section

This commit is contained in:
James Cherti
2026-01-31 16:37:45 -05:00
parent fb944b6e84
commit f0c6a50a32

22
init.el
View File

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