aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dot_emacs (renamed from dot_emacs.tmpl)3
1 files changed, 2 insertions, 1 deletions
diff --git a/dot_emacs.tmpl b/dot_emacs
index 04ee42b..5863e8e 100644
--- a/dot_emacs.tmpl
+++ b/dot_emacs
@@ -521,7 +521,8 @@ Otherwise split the current paragraph into one sentence per line."
(autoload 'markdown-mode "markdown-mode"
"Major mode for editing Markdown files" t)
:hook ((markdown-mode . (lambda ()
- (setq-default indent-tabs-mode -1))))
+ (setq-default indent-tabs-mode nil)
+ (setq-default whitespace-style nil))))
:mode (("\\.markdown\\'" . markdown-mode)
("\\.mdown\'" . markdown-mode)))