Set comment-empty-lines to t

This commit is contained in:
James Cherti
2024-08-12 21:42:46 -04:00
parent 68d291892f
commit 09b49250e6
2 changed files with 6 additions and 1 deletions

View File

@@ -292,6 +292,12 @@
;; Remove duplicates from the kill ring to reduce clutter
(setq kill-do-not-save-duplicates t)
;; Ensures that empty lines within the commented region are also commented out.
;; This prevents unintended visual gaps and maintains a consistent appearance,
;; ensuring that comments apply uniformly to all lines, including those that are
;; otherwise empty.
(setq comment-empty-lines t)
;;; Load post-init.el
(minimal-emacs-load-user-init "post-init.el")