summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <mail@nicolasgoaziou.fr>2017-12-17 10:56:01 +0100
committerNicolas Goaziou <mail@nicolasgoaziou.fr>2017-12-17 11:06:05 +0100
commit290bbc14adab05c7636f2afff2a4cd5529e7caea (patch)
tree830a4a01f32f9427ffe59d7973b21509551c738a
parent9d072ad67517875069f913315d762c9bb1e9c3ec (diff)
downloadorg-mode-290bbc14adab05c7636f2afff2a4cd5529e7caea.tar.gz
Update ".dir-locals.el"
* .dir-locals.el (org-mode): Add Org mode specific options so manual is more homogeneous.
-rw-r--r--.dir-locals.el19
1 files changed, 15 insertions, 4 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 1c34d93..05d260f 100644
--- a/.dir-locals.el
+++ b/.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)))
+
+
+