From 719f34b292df280e76f208c3e0f16ba6b654fb85 Mon Sep 17 00:00:00 2001 From: Random936 Date: Thu, 12 Oct 2023 17:57:33 -0700 Subject: [PATCH] Added spell checking to org files --- .emacs.d/config.org | 1 + 1 file changed, 1 insertion(+) diff --git a/.emacs.d/config.org b/.emacs.d/config.org index 697c570..efb9746 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -526,6 +526,7 @@ This installs the org package and creates a setup function to enable/disable cer ;; Setup org mode (defun jm/org-mode-setup () (org-indent-mode) + (flyspell-mode) (variable-pitch-mode 1) (visual-line-mode 1) (add-to-list 'org-link-frame-setup '(file . find-file))) ; Open link in current window not other window.