Disable Spellchecking - having issues with GB locale
This commit is contained in:
parent
d67b45e799
commit
de0b12bc04
|
|
@ -353,14 +353,15 @@ Configuration :
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Spell Correction
|
** Spell Correction
|
||||||
*** Flyspell Correct Ivy
|
*** Flyspell Correct Ivy
|
||||||
#+BEGIN_SRC emacs-lisp
|
+BEGIN_SRC emacs-lisp
|
||||||
(use-package flyspell-correct-ivy
|
(use-package flyspell-correct-ivy
|
||||||
:ensure t
|
:ensure t
|
||||||
:bind ("C-;" . flyspell-correct-wrapper)
|
:bind ("C-;" . flyspell-correct-wrapper)
|
||||||
:init
|
:init
|
||||||
(setq flyspell-correct-interface #'flyspell-correct-ivy)
|
(setq flyspell-correct-interface #'flyspell-correct-ivy)
|
||||||
(add-hook 'org-mode-hook 'flyspell-mode))
|
(add-hook 'org-mode-hook 'flyspell-mode)
|
||||||
#+END_SRC
|
(setq-default ispell-program-name "aspell"))
|
||||||
|
+END_SRC
|
||||||
** Multiple Cursors
|
** Multiple Cursors
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package multiple-cursors
|
(use-package multiple-cursors
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue