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.

30 lines
826 B

  1. #+TITLE: Grammar
  2. #+AUTHOR: Christopher James Hayward
  3. #+EMAIL: chris@chrishayward.xyz
  4. #+PROPERTY: header-args:emacs-lisp :tangle grammar.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 grammatical errors.
  9. * Config
  10. Use ~writegood-mode~ to find common writing problems such as cliches, and poor wording. Grammarly for the peons!
  11. #+begin_src emacs-lisp
  12. (use-package writegood-mode
  13. :after org
  14. :config (writegood-mode))
  15. #+end_src
  16. * Shortcuts
  17. Toggle ~writegood-mode~ with =SPC t w=:
  18. #+begin_src emacs-lisp
  19. (dotfiles/leader
  20. "tw" '(writegood-mode :which-key "Grammar"))
  21. #+end_src