0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-12 16:10:28 +00:00
org-mode/.dir-locals.el
Bastien 65d70388ab .dir-locals.el: Don't hide emphasis markers
This is needed so that e.g. emphasis markers in org-manual.org tables
don't create text changes that should be ignored.
2018-04-28 12:15:28 +02:00

18 lines
382 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-edit-src-content-indentation . 0)
(org-adapt-indentation)
(org-list-description-max-indent . 5)
(org-hide-emphasis-markers . nil)))