diff options
author | Ryan Kavanagh <rak@rak.ac> | 2024-01-05 18:20:53 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@rak.ac> | 2024-01-05 18:21:03 -0500 |
commit | 4456cd5ec1a5d03bd9bf181001a716564c1c6ce3 (patch) | |
tree | 57977673f3ad8d6976f58c4c38715f542244fdbd /dot_emacs | |
parent | Update mcgill email config (diff) |
Don't whitespace-cleanup in markdown
Diffstat (limited to '')
-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))) |