summaryrefslogtreecommitdiff
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-01-03 19:15:05 +0100
committerLudovic Courtès <ludo@gnu.org>2010-01-03 19:15:05 +0100
commit2bc8d9eff694d2160a005edecc95cdc088d546f1 (patch)
tree50b882d8a452a9b5bc6e11de42d2d2b6b1c54737 /.dir-locals.el
parente3eefae0e596a587e91693ed37a61699ac66560a (diff)
downloadguile-2bc8d9eff694d2160a005edecc95cdc088d546f1.tar.gz
Add per-directory Emacs local variables.
Diffstat (limited to '.dir-locals.el')
-rw-r--r--.dir-locals.el7
1 files changed, 7 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 000000000..b17c79baf
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,7 @@
+;; Per-directory local variables for GNU Emacs 23 and later.
+
+((nil . ((fill-column . 80)
+ (tab-width . 8)))
+ (c-mode . ((c-file-style . "gnu")))
+ (scheme-mode . ((indent-tabs-mode . nil)))
+ (emacs-lisp-mode . ((indent-tabs-mode . nil))))