emacs.d

My emacs configuration, done in a literate programming fashion using org-mode

git clone git://git.shimmy1996.com/emacs.d.git
commit 9807ed1d4f8f3bb523c6bdcf300828222a72d2c9
parent b37295cf2e52723d75d0398d3ef63a410c315656
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Sun, 21 Jan 2018 17:51:40 -0600

Add keyfreq to record command frequencies.

Diffstat:
MREADME.org | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/README.org b/README.org
@@ -20,6 +20,7 @@ Here's a short description for each module.
 | [[Company]]    | Buffer auto-completion.     |
 | [[ESS]]        | Emacs Speaks Statistics.    |
 | [[Projectile]] | Project management.         |
+| [[Keyfreq]]    | Record command frequency.   |
 
 * Packages
 Manage my package settings.
@@ -828,3 +829,13 @@ Since I use =helm=, I need to install additional support.
     (setq projectile-completion-system 'helm)
     (helm-projectile-on))
 #+END_SRC
+* Keyfreq
+** Installation
+Install =keyfreq=.
+#+BEGIN_SRC emacs-lisp
+    (use-package keyfreq
+      :ensure t
+      :init
+      (keyfreq-mode 1)
+      (keyfreq-autosave-mode 1))
+#+END_SRC