diff --git a/site-start.d/107-flyspell.el b/site-start.d/107-flyspell.el index 267a545..de5cdea 100644 --- a/site-start.d/107-flyspell.el +++ b/site-start.d/107-flyspell.el @@ -2,8 +2,8 @@ ;;; Commentary: -Flyspell highlights incorrect words as soon as they are completed -or as soon as the TextCursor hits a new word. +;; Flyspell highlights incorrect words as soon as they are completed +;; or as soon as the TextCursor hits a new word. ;;; Code: (use-package flyspell @@ -13,8 +13,9 @@ or as soon as the TextCursor hits a new word. (dolist (hook '(text-mode-hook org-mode-hook)) (add-hook hook (lambda () (flyspell-mode 1)))) :config - (setq ispell-program-name "aspell" - ispell-list-command "--list")) + ;;(setq ispell-program-name "aspell" + ;; ispell-list-command "--list") + ) (provide '107-flyspell) ;; End: