summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-10-28 08:57:08 +0000
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-10-28 08:57:08 +0000
commita62cd0f103622cc4361c1b83b9d86599a2afab40 (patch)
tree05a8720670488d4bfae569b467f36a12c60f9d21 /.dir-locals.el
parentac0b2408a02d70264a942c9ae0e50d10aa442862 (diff)
Add .dir-locals
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el21
1 files changed, 16 insertions, 5 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
index 459d85a5..954c3d50 100644
--- a/.dir-locals.el
+++ b/.dir-locals.el
@@ -1,5 +1,16 @@
-((nil . ((indent-tabs-mode . nil)
- (fill-column . 80)
- (sentence-end-double-space . t)
- (emacs-lisp-docstring-fill-column . 75)
- (checkdoc-arguments-in-order-flag . nil))))
+;;; Directory Local Variables
+;;; For more information see (info "(emacs) Directory Variables")
+;; The `nameless-*' variables normalize all files to have the same prefix with
+;; the `nameless' package, and instruct the package to not mess with
+;; indentation.
+
+((nil
+ (indent-tabs-mode)
+ (fill-column . 80)
+ (sentence-end-double-space . t)
+ (emacs-lisp-docstring-fill-column . 75)
+ (checkdoc-arguments-in-order-flag))
+ (emacs-lisp-mode
+ (nameless-affect-indentation-and-filling . nil)
+ (nameless-current-name . "cider")))
+