about summary refs log tree commit diff stats
path: root/config.org
diff options
context:
space:
mode:
authorCase Duckworth2020-11-01 23:46:02 -0600
committerCase Duckworth2020-11-01 23:46:02 -0600
commitfae85c702e2b418dfddccd1d97ecc0af49cdfebf (patch)
tree56f5653e8720546d479f0efe48fa1886f4e44d95 /config.org
parentLink config.org to README.org (diff)
downloademacs-fae85c702e2b418dfddccd1d97ecc0af49cdfebf.tar.gz
emacs-fae85c702e2b418dfddccd1d97ecc0af49cdfebf.zip
Install word count mode
Diffstat (limited to 'config.org')
-rw-r--r--config.org8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.org b/config.org index e0c92fb..2fcba97 100644 --- a/config.org +++ b/config.org
@@ -595,6 +595,14 @@ I was using company, but I think it might've been causing issues with ~awk-mode~
595 (use-package ssh-config-mode) 595 (use-package ssh-config-mode)
596#+end_src 596#+end_src
597* Writing 597* Writing
598** Word count
599#+begin_src emacs-lisp
600 (use-package wc-mode
601 :init
602 (rm-whitelist-add "WC")
603 :hook
604 (text-mode . wc-mode))
605#+end_src
598** Visual fill column 606** Visual fill column
599#+begin_src emacs-lisp 607#+begin_src emacs-lisp
600 (use-package visual-fill-column 608 (use-package visual-fill-column