]> git.armaanb.net Git - config.org.git/commitdiff
Add wc-mode
authorArmaan Bhojwani <me@armaanb.net>
Fri, 2 Apr 2021 16:23:33 +0000 (12:23 -0400)
committerArmaan Bhojwani <me@armaanb.net>
Fri, 2 Apr 2021 16:23:33 +0000 (12:23 -0400)
Still not totally satisfied with this and can't get it to work
right... may write a package of my own for word counting in the
modeline.

config.org

index c0e9d80e9830e2cb791062cdd2c171cc1693a4e5..9152d23e52dd70b511deb96de19b959ed09eb92c 100644 (file)
@@ -129,6 +129,12 @@ Show current column and file size.
   (use-package minions
     :config (minions-mode))
 #+end_src
+** Word count
+#+begin_src emacs-lisp
+ (use-package wc-mode
+   :straight (wc-mode :type git :host github :repo "bnbeckwith/wc-mode")
+   :hook (text-mode-hook . wc-mode))
+#+end_src
 ** Ruler
 Show a ruler at a certain number of chars depending on mode.
 #+begin_src emacs-lisp