summaryrefslogtreecommitdiff
path: root/emacs.d
diff options
context:
space:
mode:
authorLars Wirzenius <lwirzenius@wikimedia.org>2021-04-07 17:23:11 +0300
committerLars Wirzenius <lwirzenius@wikimedia.org>2021-04-07 17:23:11 +0300
commit2d6a990f278dba96c123cf9a728ba572a3aa4929 (patch)
tree76c9dac4ad3cbfce018dffa3c56d2548b74360bd /emacs.d
parentcb862e0cf207197c961e7f9dbf049941355ee033 (diff)
downloadliw-dot-files-2d6a990f278dba96c123cf9a728ba572a3aa4929.tar.gz
prevent tabs in emacs
Diffstat (limited to 'emacs.d')
-rw-r--r--emacs.d/init.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el
index 96ca155..d694c4b 100644
--- a/emacs.d/init.el
+++ b/emacs.d/init.el
@@ -159,6 +159,9 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Other tweaks.
+;; Prevent Extraneous Tabs
+(setq-default indent-tabs-mode nil)
+
;; Do not make backup files when saving.
(setq make-backup-files nil)