mirror of
https://git.savannah.gnu.org/git/emacs/org-mode.git
synced 2024-11-25 07:27:57 +00:00
e43c7a3575
* doc/org-manual.org: Re-order footnotes. * .dir-locals.el (org-mode): Auto-adjust footnotes.
22 lines
523 B
EmacsLisp
22 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))
|
|
(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)
|
|
(org-list-description-max-indent . 5)))
|
|
|
|
|
|
|