From 493734028776dd65552fd72b7f0547e9f23e1e0c Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Mon, 10 Feb 2025 10:41:45 -0500 Subject: [PATCH] Update README.md --- README.md | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6db091c..382da4b 100644 --- a/README.md +++ b/README.md @@ -745,19 +745,28 @@ And [add the elpaca bootstrap code](https://github.com/progfolio/elpaca?tab=read (setq pixel-scroll-precision-use-momentum nil) (pixel-scroll-precision-mode 1) -;; Note: If you're using the pre-built `emacs-mac` (version <= 29.1), pixel-based smooth scrolling -;; is handled by the Mac port code instead of `pixel-scroll-precision-mode`. In this case, use the -;; following line instead of the two lines above: +;; Pixel Scroll Precision Mode on Emacs for macOS: If you're using a pre-built +;; emacs-mac (version <= 29.1), smooth scrolling is handled by the Mac port +;; code, which overrides `pixel-scroll-precision-mode'. In this case, use the +;; following line instead of enabling `pixel-scroll-precision-mode': ;; ;; (pixel-scroll-mode 1) ;; ;; For more details, see: ;; https://bitbucket.org/mituharu/emacs-mac/commits/65c6c96f27afa446df6f9d8eff63f9cc012cc738 -(display-time-mode) -(show-paren-mode +1) ; Paren match highlighting +;; Display the time in the modeline +(display-time-mode 1) + +;; Paren match highlighting +(show-paren-mode 1) + +;; Track changes in the window configuration, allowing undoing actions such as +;; closing windows. (winner-mode 1) -(delete-selection-mode 1) ; Replace selected text with typed text + +;; Replace selected text with typed text +(delete-selection-mode 1) ;; Configure Emacs to ask for confirmation before exiting (setq confirm-kill-emacs 'y-or-n-p)