mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-21 06:55:35 +00:00
bd1c3187cf
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
23 lines
523 B
EmacsLisp
23 lines
523 B
EmacsLisp
;;; Directory Local Variables
|
|
;;; For more information see (info "(emacs) Directory Variables")
|
|
|
|
((nil
|
|
(indent-tabs-mode . t)
|
|
(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)
|
|
(org-edit-src-content-indentation . 0)
|
|
(org-footnote-auto-adjust . t)
|
|
(org-footnote-auto-label . t)
|
|
(org-footnote-define-inline . nil)
|
|
(org-footnote-section . "Footnotes")
|
|
(org-hide-emphasis-markers . nil)))
|
|
|
|
|
|
|