I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
877 B

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