aboutsummaryrefslogtreecommitdiff
path: root/dot_emacs.tmpl
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@rak.ac>2023-12-20 10:39:04 -0500
committerRyan Kavanagh <rak@rak.ac>2023-12-20 10:39:04 -0500
commit7f6f8cd392d8f6cc33c2847f9d3d667be1d74d25 (patch)
tree3185c827865e42a096cde95f94f6207268bfb269 /dot_emacs.tmpl
parentRemove .config/systemd/user/borgmatic@tosh.service.wants/backup-email@mail.cs... (diff)
Disable indent-tabs-mode in markdown-mode
Diffstat (limited to 'dot_emacs.tmpl')
-rw-r--r--dot_emacs.tmpl2
1 files changed, 2 insertions, 0 deletions
diff --git a/dot_emacs.tmpl b/dot_emacs.tmpl
index 0a2669c..861a522 100644
--- a/dot_emacs.tmpl
+++ b/dot_emacs.tmpl
@@ -528,6 +528,8 @@ Otherwise split the current paragraph into one sentence per line."
:init
(autoload 'markdown-mode "markdown-mode"
"Major mode for editing Markdown files" t)
+ :hook ((markdown-mode . (lambda ()
+ (setq-default indent-tabs-mode -1))))
:mode (("\\.markdown\\'" . markdown-mode)
("\\.mdown\'" . markdown-mode)))