Remove more parameters that are already set to their default value
This commit is contained in:
22
init.el
22
init.el
@@ -161,7 +161,6 @@
|
|||||||
;;; Tramp
|
;;; Tramp
|
||||||
|
|
||||||
(setq tramp-verbose 1)
|
(setq tramp-verbose 1)
|
||||||
(setq tramp-completion-reread-directory-timeout 50)
|
|
||||||
|
|
||||||
;;; Files
|
;;; Files
|
||||||
|
|
||||||
@@ -300,10 +299,6 @@
|
|||||||
|
|
||||||
;;; Frames and windows
|
;;; 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)
|
(setq resize-mini-windows 'grow-only)
|
||||||
|
|
||||||
;; The native border "uses" a pixel of the fringe on the rightmost
|
;; 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.
|
;; 2. Resolving the issue of random half-screen jumps during scrolling.
|
||||||
(setq auto-window-vscroll nil)
|
(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
|
;; Horizontal scrolling
|
||||||
(setq hscroll-margin 2
|
(setq hscroll-margin 2
|
||||||
hscroll-step 1)
|
hscroll-step 1)
|
||||||
|
|
||||||
;;; Mouse
|
|
||||||
|
|
||||||
(setq mouse-yank-at-point nil)
|
|
||||||
|
|
||||||
;; Emacs 29
|
;; Emacs 29
|
||||||
(when (memq 'context-menu minimal-emacs-ui-features)
|
(when (memq 'context-menu minimal-emacs-ui-features)
|
||||||
(when (and (display-graphic-p) (fboundp 'context-menu-mode))
|
(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.
|
;; Don't blink the paren matching the one at point, it's too distracting.
|
||||||
(setq blink-matching-paren nil)
|
(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
|
;; Reduce rendering/line scan work by not rendering cursors or regions in
|
||||||
;; non-focused windows.
|
;; non-focused windows.
|
||||||
(setq highlight-nonselected-windows nil)
|
(setq highlight-nonselected-windows nil)
|
||||||
@@ -378,10 +360,6 @@
|
|||||||
;; deletion, disrupting the flow of editing.
|
;; deletion, disrupting the flow of editing.
|
||||||
(setq delete-pair-blink-delay 0.03)
|
(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
|
;; Continue wrapped lines at whitespace rather than breaking in the
|
||||||
;; middle of a word.
|
;; middle of a word.
|
||||||
(setq-default word-wrap t)
|
(setq-default word-wrap t)
|
||||||
|
|||||||
Reference in New Issue
Block a user