Disable Spellchecking - having issues with GB locale

This commit is contained in:
Curt Spark 2020-04-15 02:16:11 +01:00
parent d67b45e799
commit de0b12bc04
1 changed files with 4 additions and 3 deletions

View File

@ -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