From 2f7192cfe6e0e419f8e8d39859bd328a746ae032 Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Thu, 13 Mar 2025 18:32:46 -0400 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6cd6019..0382425 100644 --- a/README.md +++ b/README.md @@ -905,14 +905,14 @@ To prevent Emacs from saving customization information to a custom file, set `cu (pixel-scroll-precision-mode 1)) ;; Display the time in the modeline -(add-hook 'after-init-hook 'display-time-mode) +(add-hook 'after-init-hook #'display-time-mode) ;; Paren match highlighting -(add-hook 'after-init-hook 'show-paren-mode) +(add-hook 'after-init-hook #'show-paren-mode) ;; Track changes in the window configuration, allowing undoing actions such as ;; closing windows. -(add-hook 'after-init-hook 'winner-mode) +(add-hook 'after-init-hook #'winner-mode) ;; Replace selected text with typed text ;; (delete-selection-mode 1)