summaryrefslogtreecommitdiff
path: root/tw
diff options
context:
space:
mode:
authorTimo Wilken2023-01-08 14:21:50 +0100
committerTimo Wilken2023-01-08 14:21:50 +0100
commite2236c1e5f5ba1664ca1f2477ee1a7437ca6d81b (patch)
treedb4683bd80a8ab7da85911fe2cf0f685b1589bf9 /tw
parent9594f297b6ea66156b043a484594377b9101bfbd (diff)
Use single-spaced sentences by default
Diffstat (limited to 'tw')
-rw-r--r--tw/home/files/emacs-init.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/tw/home/files/emacs-init.el b/tw/home/files/emacs-init.el
index 0dcf20d1..dd9c073a 100644
--- a/tw/home/files/emacs-init.el
+++ b/tw/home/files/emacs-init.el
@@ -39,7 +39,9 @@
(global-hl-line-mode t "Highlight the current line in all buffers.")
(column-number-mode t "Show the column number in the statusline.")
(electric-pair-mode t "Auto-pair suitable characters like parentheses.")
- (completion-cycle-threshold 6 "Allow cycling through completions if there are 6 or fewer of them.")))
+ (completion-cycle-threshold 6 "Allow cycling through completions if there are 6 or fewer of them.")
+ ;; Text formatting.
+ (sentence-end-double-space nil "Use a single space after a sentence.")))
(defalias 'yes-or-no-p #'y-or-n-p
"Always use `y-or-n-p' when asking for confirmation.")