emacs.d

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

git clone git://git.shimmy1996.com/emacs.d.git
commit bfc01de7367fd7fdea1533461da1a18d6d1ff936
parent 2e3054f11b559145e8eebebadd1f1b7c79404264
Author: Shimmy Xu <shimmy.xu@shimmy1996.com>
Date:   Thu, 21 Mar 2019 14:28:17 -0400

Set tab width.

Diffstat:
MREADME.org | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/README.org b/README.org
@@ -226,6 +226,11 @@ Use spaces for indenting.
   (setq-default indent-tabs-mode nil)
 #+END_SRC
 
+For those that uses tab, set width to 4.
+#+BEGIN_SRC emacs-lisp
+  (setq-default tab-width 4)
+#+END_SRC
+
 ** Parenthesis Highlighting
 Highlight matching parenthesis.
 #+BEGIN_SRC emacs-lisp