#+TITLE: Spelling #+AUTHOR: Christopher James Hayward #+EMAIL: chris@chrishayward.xyz #+PROPERTY: header-args:emacs-lisp :tangle spelling.el :comments org #+PROPERTY: header-args :results silent :eval no-export :comments org #+OPTIONS: num:nil toc:nil todo:nil tasks:nil tags:nil #+OPTIONS: skip:nil author:nil email:nil creator:nil timestamp:nil Real time checking and one-shot methods to check and correct common spelling mistakes. * Config Configure ~ispell~ as a back-end with ~flyspell~ for real-time checking and highlighting of spelling mistakes. #+begin_src emacs-lisp (use-package ispell :after org :custom (ispell-dictionary dotfiles/lang)) #+end_src * Shortcuts Toggle highlighting within buffer specific contexts with =SPC t s=: #+begin_src emacs-lisp (dotfiles/leader "ts" '(flyspell-buffer :which-key "Spelling")) #+end_src * Footnotes