diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2023-01-12 00:37:53 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2023-01-12 00:46:37 +0100 |
| commit | c6041bcf452b4317a58215615499621df4c89f8d (patch) | |
| tree | 3d655017b576dc8ac6b28d877178bc3ad71351af | |
| parent | 63dd17688c9b2a76e941c322a48b0001d7921def (diff) | |
| download | dotfiles-c6041bcf452b4317a58215615499621df4c89f8d.tar.xz | |
Move show-paren settings to use-package
show-paren-mode is not needed for Emacs≥28, but I still have stuff in
these dotfiles that purport to support older versions.
| -rw-r--r-- | .emacs | 5 | ||||
| -rw-r--r-- | .emacs-custom.el | 1 |
2 files changed, 5 insertions, 1 deletions
@@ -759,5 +759,10 @@ (use-package org-indent :delight "»") + +(use-package paren + :custom + (show-paren-mode t) + (show-paren-predicate t)) ;;; TODO: decruftify mode-line (e.g. remove superflous parens). diff --git a/.emacs-custom.el b/.emacs-custom.el index c582632..9117690 100644 --- a/.emacs-custom.el +++ b/.emacs-custom.el @@ -50,7 +50,6 @@ '(scroll-conservatively 10) '(scroll-preserve-screen-position t) '(send-mail-function 'smtpmail-send-it) - '(show-paren-mode t) '(split-width-threshold 120) '(switch-to-buffer-obey-display-actions t) '(tab-bar-show 1) |
