Commit 410551b36b4a

Vincent Demeester <vincent@sbr.pm>
2020-09-25 13:24:21
tools/emacs: temporary remove flyspell 👾
Let's try to use and configure `ispell' instead. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent faa5ce7
Changed files (1)
tools
emacs
tools/emacs/config/config-editing.el
@@ -158,28 +158,6 @@ Else toggle the comment status of the line at point."
          ("M-;" . comment-indent)
          ("C-x C-;" . comment-box)))
 
-;; UseFlySpell
-(use-package flyspell
-  :commands (flyspell-prog-mode flyspell-mode)
-  :hook((text-mode . turn-on-flyspell)
-        (prog-mode . turn-on-flyspell))
-  :config
-  (define-key flyspell-mode-map (kbd "C-;") nil)
-  (setq-default flyspell-issue-message-flag nil
-                flyspell-issue-welcome-flag nil
-                ispell-program-name "hunspell"
-                ispell-local-dictionary "en_GB"
-                ispell-local-dictionary-alist
-                '(("en_GB"
-                   "[[:alpha:]]"
-                   "[^[:alpha:]]"
-                   "[']"
-                   nil
-                   ("-d" "en_GB,fr_FR")
-                   nil
-                   utf-8))))
-;; -UseFlySpell
-
 (use-package emacs
   :init
   (setq-default tab-always-indent 'complete