Browse Source

Update ".dir-locals.el"

* .dir-locals.el (org-mode): Add Org mode specific options so manual
   is more homogeneous.
Nicolas Goaziou 7 năm trước cách đây
mục cha
commit
290bbc14ad
1 tập tin đã thay đổi với 15 bổ sung4 xóa
  1. 15 4
      .dir-locals.el

+ 15 - 4
.dir-locals.el

@@ -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)))
+
+
+