diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-23 02:36:06 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-23 02:36:06 +0200 |
commit | ed0fed5598027467a30697b2ffda0cb50ad2065f (patch) | |
tree | 833bbdca8e1ca593b61fc9481553d6f6c32b12e5 /.config | |
parent | 564b181d15f4e55c678bf842021e2da6042a83c8 (diff) |
emacs: Prefer <img src="…"> to <img src="…" />
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/modules/mm-editing.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.config/emacs/modules/mm-editing.el b/.config/emacs/modules/mm-editing.el index fdde408..11bf689 100644 --- a/.config/emacs/modules/mm-editing.el +++ b/.config/emacs/modules/mm-editing.el @@ -246,7 +246,9 @@ is as described by `emmet-expand-line'." (use-package emmet-mode :ensure t - :bind ("C-," . mm-editing-emmet-dwim)) + :bind ("C-," . mm-editing-emmet-dwim) + :custom + (emmet-self-closing-tag-style "")) ;;; Additional Major Modes |