summaryrefslogtreecommitdiff
path: root/conf/.dir-locals.el
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-10-09 17:30:49 +0000
committerng0 <ng0@n0.is>2019-10-09 17:30:49 +0000
commit55bd2280c8a69261f01cd06ae88e3e7ae32cf58b (patch)
tree139a13b17edc0268ba7018875a30ef98bbcd9159 /conf/.dir-locals.el
parentf3fcc325beac420111498f428764ccad8109f599 (diff)
downloadbuild-common-55bd2280c8a69261f01cd06ae88e3e7ae32cf58b.tar.gz
build-common-55bd2280c8a69261f01cd06ae88e3e7ae32cf58b.tar.bz2
build-common-55bd2280c8a69261f01cd06ae88e3e7ae32cf58b.zip
check in code independent build system code.
Diffstat (limited to 'conf/.dir-locals.el')
-rw-r--r--conf/.dir-locals.el16
1 files changed, 16 insertions, 0 deletions
diff --git a/conf/.dir-locals.el b/conf/.dir-locals.el
new file mode 100644
index 0000000..6878638
--- /dev/null
+++ b/conf/.dir-locals.el
@@ -0,0 +1,16 @@
+;; Per-directory local variables for GNU Emacs 23 and later.
+
+((nil
+ . ((fill-column . 78)
+ (tab-width . 4)
+ (indent-tabs-mode . nil)
+ (show-trailing-whitespace . t)
+ (c-basic-offset . 2)
+ (ispell-check-comments . exclusive)
+ (ispell-local-dictionary . "american")
+ (safe-local-variable-values
+ '((c-default-style . "gnu")
+ (sentence-end-double-space . f)
+ (eval add-hook 'prog-mode-hook #'flyspell-prog-mode)
+ (flyspell-issue-message-flag . f) ; avoid messages for every word
+ )))))