Add delete-pair-blink-delay

This commit is contained in:
James Cherti
2024-08-14 08:37:06 -04:00
parent ad36b217b5
commit fef3e2b850

View File

@@ -257,6 +257,11 @@
(setq visible-bell nil) (setq visible-bell nil)
(setq ring-bell-function #'ignore) (setq ring-bell-function #'ignore)
;; This controls how long Emacs will blink to show the deleted pairs with
;; `delete-pair'. A longer delay can be annoying as it causes a noticeable pause
;; after each deletion, disrupting the flow of editing.
(setq delete-pair-blink-delay 0.1)
;;; Indent and formatting ;;; Indent and formatting
(setq-default left-fringe-width 8) (setq-default left-fringe-width 8)
(setq-default right-fringe-width 8) (setq-default right-fringe-width 8)