emacs.d

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

git clone git://git.shimmy1996.com/emacs.d.git
commit 0399e0be72fcc33b279890452aca92b9f8a89c9c
parent d5e44de0ceb1634d32735dc68592c6e4ff3fe4f4
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Thu, 19 Oct 2017 23:25:38 -0500

Disabling tabs and removed all the tabs.

Diffstat:
MREADME.org | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/README.org b/README.org
@@ -43,8 +43,8 @@ List the base packages I would like to install here. Mostly just the core packag
 #+BEGIN_SRC emacs-lisp
   (setq my-package-list '(auctex
                           base16-theme
+                          magit
                           ox-hugo
-			  magit
                           helm))
 #+END_SRC
 
@@ -129,6 +129,12 @@ Enable line wrapping by default.
   (global-visual-line-mode t)
 #+end_SRC
 
+** No Tabs
+Use spaces for indenting.
+#+BEGIN_SRC emacs-lisp
+  (setq-default indent-tabs-mode nil)
+#+END_SRC
+
 ** Remove Trailing Whitespace
 Remove trailing whitespace upon saving.
 #+BEGIN_SRC emacs-lisp