From 1f24a307804b791c80395dec2506318d6e94a0a9 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Thu, 17 Aug 2023 00:54:40 -0700 Subject: [PATCH] fix: single space sentences Signed-off-by: Lucas Sta Maria --- .emacs.d/include/general.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.emacs.d/include/general.el b/.emacs.d/include/general.el index 5883fa9..96ed2e4 100644 --- a/.emacs.d/include/general.el +++ b/.emacs.d/include/general.el @@ -71,6 +71,11 @@ ;; Undos (setq undo-limit 200000) +;; Sentences +;; Emacs thinks that sentences ends with period and two spaces, +;; disable this. +(setq sentence-end-double-space nil) + ;; Theme (add-to-list 'custom-theme-load-path "~/.emacs.d/themes") (load-theme 'nano t)