From 2fdc134822cd1c24934709331b943bacb2d4f637 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Fri, 13 Mar 2026 15:18:44 -0400 Subject: [PATCH] Remove more parameters that are already set to their default value --- init.el | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/init.el b/init.el index a2ddfcb..1dcf200 100644 --- a/init.el +++ b/init.el @@ -161,7 +161,6 @@ ;;; Tramp (setq tramp-verbose 1) -(setq tramp-completion-reread-directory-timeout 50) ;;; Files @@ -300,10 +299,6 @@ ;;; Frames and windows -;; However, do not resize windows pixelwise, as this can cause crashes in some -;; cases when resizing too many windows at once or rapidly. -(setq window-resize-pixelwise nil) - (setq resize-mini-windows 'grow-only) ;; The native border "uses" a pixel of the fringe on the rightmost @@ -333,20 +328,10 @@ ;; 2. Resolving the issue of random half-screen jumps during scrolling. (setq auto-window-vscroll nil) -;; Number of lines of margin at the top and bottom of a window. -(setq scroll-margin 0) - -;; Number of lines of continuity when scrolling by screenfuls. -(setq next-screen-context-lines 0) - ;; Horizontal scrolling (setq hscroll-margin 2 hscroll-step 1) -;;; Mouse - -(setq mouse-yank-at-point nil) - ;; Emacs 29 (when (memq 'context-menu minimal-emacs-ui-features) (when (and (display-graphic-p) (fboundp 'context-menu-mode)) @@ -362,9 +347,6 @@ ;; Don't blink the paren matching the one at point, it's too distracting. (setq blink-matching-paren nil) -;; Do not extend the cursor to fit wide characters -(setq x-stretch-cursor nil) - ;; Reduce rendering/line scan work by not rendering cursors or regions in ;; non-focused windows. (setq highlight-nonselected-windows nil) @@ -378,10 +360,6 @@ ;; deletion, disrupting the flow of editing. (setq delete-pair-blink-delay 0.03) -;; Disable visual indicators in the fringe for buffer boundaries and empty lines -(setq-default indicate-buffer-boundaries nil) -(setq-default indicate-empty-lines nil) - ;; Continue wrapped lines at whitespace rather than breaking in the ;; middle of a word. (setq-default word-wrap t)