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