summaryrefslogtreecommitdiff
path: root/.dir-locals.el
blob: 954c3d508224c5de1fee7235fd7b1ef276cd3081 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
;;; 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")))