mirror of https://github.com/Chizi123/.emacs.d.git

Joel Grunbaum
2022-01-01 4ebb4dc316ad135c94c94755e7bf8dcd1403b9e4
Move spell checking to use-package
2 files modified
12 ■■■■■ changed files
config.org 12 ●●●●● patch | view | raw | blame | history
init.el patch | view | raw | blame | history
config.org
@@ -104,20 +104,10 @@
Use aspell for spellchecking. 
Auto-enable in latex and org as they're the main writing modes.
#+BEGIN_SRC emacs-lisp
  ;; (require 'ispell)
  ;; (setq-default ispell-program-name "aspell")
  ;; (setq-default ispell-local-dictionary "en_AU")
  ;; (add-hook 'tex-mode-hook 'flyspell-mode)
  ;; (add-hook 'latex-mode-hook 'flyspell-mode)
  ;; (add-hook 'TeX-mode-hook 'flyspell-mode)
  ;; (add-hook 'LaTeX-mode-hook 'flyspell-mode)
  ;; (add-hook 'latex-mode-hook 'flyspell-buffer)
  ;; (add-hook 'org-mode-hook 'flyspell-mode)
  ;; (add-hook 'org-mode-hook 'flyspell-buffer)
  ;; (diminish 'flyspell-mode)
  (use-package flyspell
    :hook (tex-mode latex-mode TeX-mode LaTeX-mode org-mode)
    :diminish flyspell-mode
    :init (require 'ispell)
    :config
    (setq-default ispell-program-name "aspell")
    (setq-default ispell-local-dictionary "en_AU"))
init.el