.dir-locals.el: Set indent-tabs-mode to nil in Elisp sources

Despite .dir-locals.el having a catchall value of t for
indent-tabs-mode, Org's Elisp files are a mix of tabs and spaces.
Emacs has used a value of nil for indent-tabs-mode since 93d4412046
(Set indent-tabs-mode to nil in (most) Elisp sources, 2015-04-15).  Do
the same.

Ref: https://orgmode.org/list/87eejsg9vw.fsf@gnu.org
This commit is contained in:
Kyle Meyer 2020-12-23 00:00:26 -05:00
parent 97f1d8e340
commit bd1c3187cf
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,8 @@
(tab-width . 8)
(fill-column . 70)
(sentence-end-double-space . t))
(emacs-lisp-mode
(indent-tabs-mode))
(org-mode
(indent-tabs-mode)
(org-adapt-indentation)