From de0b12bc0473e86fc237edb7a477a3d550c7a757 Mon Sep 17 00:00:00 2001 From: Curt Spark Date: Wed, 15 Apr 2020 02:16:11 +0100 Subject: [PATCH] Disable Spellchecking - having issues with GB locale --- config.org | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/config.org b/config.org index c66277c..23c56d7 100644 --- a/config.org +++ b/config.org @@ -353,14 +353,15 @@ Configuration : #+END_SRC ** Spell Correction *** Flyspell Correct Ivy -#+BEGIN_SRC emacs-lisp ++BEGIN_SRC emacs-lisp (use-package flyspell-correct-ivy :ensure t :bind ("C-;" . flyspell-correct-wrapper) :init (setq flyspell-correct-interface #'flyspell-correct-ivy) - (add-hook 'org-mode-hook 'flyspell-mode)) -#+END_SRC + (add-hook 'org-mode-hook 'flyspell-mode) + (setq-default ispell-program-name "aspell")) ++END_SRC ** Multiple Cursors #+BEGIN_SRC emacs-lisp (use-package multiple-cursors