emacs.d

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

git clone git://git.shimmy1996.com/emacs.d.git
commit cf6456bff6f74747f73ccdf6409a2ee7c0ca6816
parent ea26f6f6fc2e8f59dcb301562334627e7302863a
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Thu, 21 Jun 2018 00:46:35 -0500

Change default theme.

Diffstat:
MREADME.org | 13+++++--------
1 file changed, 5 insertions(+), 8 deletions(-)
diff --git a/README.org b/README.org
@@ -60,15 +60,12 @@ Highlight portions of line over 80 characters in =prog-mode=.
 #+END_SRC
 
 ** Color Themes
-Install =base16-theme=.
+Install =base16-theme= and enable gruvbox dark medium.
 #+BEGIN_SRC emacs-lisp
-  (use-package base16-theme
-    :ensure t)
-#+END_SRC
-
-Solarized light or monokai.
-#+BEGIN_SRC emacs-lisp
-  (load-theme 'base16-monokai t)
+    (use-package base16-theme
+      :ensure t
+      :config
+      (load-theme 'base16-gruvbox-dark-medium t))
 #+END_SRC
 
 ** Customize Settings in Separate File