Update README.md

This commit is contained in:
James Cherti
2025-06-01 15:08:51 -04:00
parent 89ad720f7e
commit 3ff9a19151
2 changed files with 11 additions and 9 deletions

View File

@@ -1120,7 +1120,9 @@ fc-list : family | sed 's/,/\n/g' | sort -u
(setq mode-line-position-column-line-format '("%l:%C"))
;; Display of line numbers in the buffer:
;; (display-line-numbers-mode 1)
(setq-default display-line-numbers-type 'relative)
(dolist (hook '(prog-mode-hook text-mode-hook conf-mode-hook))
(add-hook hook #'display-line-numbers-mode))
(use-package which-key
:ensure nil ; builtin

16
init.el
View File

@@ -43,6 +43,12 @@
;; Disable warnings from the legacy advice API. They aren't useful.
(setq ad-redefinition-action 'accept)
;;; Undo/redo
(setq undo-limit (* 13 160000)
undo-strong-limit (* 13 240000)
undo-outer-limit (* 13 24000000))
;;; package.el
(when (bound-and-true-p minimal-emacs-package-initialize-and-refresh)
@@ -57,12 +63,6 @@
;; Ensure use-package is available
(require 'use-package))
;;; Undo/redo
(setq undo-limit (* 13 160000)
undo-strong-limit (* 13 240000)
undo-outer-limit (* 13 24000000))
;;; Minibuffer
;; Allow nested minibuffers
@@ -462,8 +462,8 @@
(setq flyspell-issue-welcome-flag nil)
;; Greatly improves flyspell performance by preventing messages from being
;; displayed for each word when checking the entire buffer.
;; Improves flyspell performance by preventing messages from being displayed for
;; each word when checking the entire buffer.
(setq flyspell-issue-message-flag nil)
;;; ispell