aboutsummaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorKristoffer Balintona <krisbalintona@gmail.com>2025-11-30 00:20:51 -0600
committerDavid Bremner <david@tethera.net>2026-01-12 12:27:02 +0900
commite6e0cdff3b6ab7505666326324e7dbcb2e7714e2 (patch)
treea1e262855ce2473f1114d20a48473ee3bddbbb5f /.dir-locals.el
parent5c921b6c0b2df460c7d50f6563edf700d0420732 (diff)
emacs: Set `sentence-end-double-space` in .dir-locals.el
Throughout the project's files, contributors have implicitly been ending their sentences with a period and a single space. Set `sentence-end-double-space` accordingly.
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index b3ddffe8..b21f53c7 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -21,5 +21,5 @@
(sh-basic-offset . 4)
(sh-indentation . 4))
(nil
- (fill-column . 70))
- )
+ (fill-column . 70)
+ (sentence-end-double-space . nil)))