Browse Source

Add grammer to writing module

main
parent
commit
1948c1d2c4
  1. 11
      README.org
  2. 4
      modules/writing.el

11
README.org

@ -969,6 +969,17 @@ Screencast controls behind =SPC s=.
"sp" '(gif-screencast-toggle-pause :which-key "Pause")) "sp" '(gif-screencast-toggle-pause :which-key "Pause"))
#+end_src #+end_src
*** Grammar
I use [[https://github.com/bnbeckwith/writegood-mode][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
*** Spelling
** Projects ** Projects
:PROPERTIES: :PROPERTIES:
:header-args: :tangle modules/projects.el :results silent :header-args: :tangle modules/projects.el :results silent

4
modules/writing.el

@ -113,3 +113,7 @@
"s" '(:ignore t :which-key "Screencast") "s" '(:ignore t :which-key "Screencast")
"ss" '(gif-screencast-start-or-stop :which-key "Start / Stop") "ss" '(gif-screencast-start-or-stop :which-key "Start / Stop")
"sp" '(gif-screencast-toggle-pause :which-key "Pause")) "sp" '(gif-screencast-toggle-pause :which-key "Pause"))
(use-package writegood-mode
:after org
:config (writegood-mode))
Loading…
Cancel
Save