Update ".dir-locals.el"

* .dir-locals.el (org-mode): Add Org mode specific options so manual
   is more homogeneous.
This commit is contained in:
Nicolas Goaziou 2017-12-17 10:56:01 +01:00
parent 9d072ad675
commit 290bbc14ad
1 changed files with 15 additions and 4 deletions

View File

@ -1,4 +1,15 @@
((nil . ((indent-tabs-mode . t)
(tab-width . 8)
(fill-column . 70)
(sentence-end-double-space . t))))
;;; 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 . 2)
(org-adapt-indentation)))