summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-04-20 13:27:04 +0200
committerGravatar Tom Willemse2014-04-20 13:27:04 +0200
commit4200f050f0a3643cb30ae9e34b567a7febdc4904 (patch)
tree217a9ba91cb90573d8977c7be96ca81e92229cfb
parent149e4acb12f4c0aa8dd9cefbc3b201d8969875b2 (diff)
downloademacs-4200f050f0a3643cb30ae9e34b567a7febdc4904.tar.gz
emacs-4200f050f0a3643cb30ae9e34b567a7febdc4904.zip
Move tabs setting to init.org
-rw-r--r--.emacs.d/init.el1
-rw-r--r--.emacs.d/init.org13
2 files changed, 13 insertions, 1 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 2ac2ea3..1c02126 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -910,7 +910,6 @@ from myaethon2.core.decorators import (
;;;; Unconditional settings
-(setq-default indent-tabs-mode nil)
(setq-default tab-width 4)
(setq-default truncate-lines t)
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index 0c77cc0..4f07cf3 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -473,6 +473,19 @@
(setq-default bidi-paragraph-direction 'left-to-right)
#+END_SRC
+** Don't use tabs
+
+ There is a war going on out there. Actually there are several, but
+ the one I'm talking about here is the one about tabs vs. spaces. I
+ have been deeply entrenched in the spaces camp for quite a while.
+ Indentation always gets screwy for me if I don't use the exact same
+ =tab-width= everyone else uses. I just like the consistency of using
+ spaces.
+
+ #+BEGIN_SRC emacs-lisp
+ (setq-default indent-tabs-mode nil)
+ #+END_SRC
+
* Notes
Here are some random or somewhat general notes about things you may