aboutsummaryrefslogtreecommitdiffhomepage
path: root/.dir-locals.el
diff options
context:
space:
mode:
authorGravatar Daniel Kahn Gillmor <dkg@fifthhorseman.net>2010-11-24 00:45:43 -0500
committerGravatar Carl Worth <cworth@cworth.org>2011-05-18 16:11:53 -0700
commitbab77c90844eede014fcf79414bab38add83a3b9 (patch)
tree740137ab29de6a03ced987748ff22ac231b595e8 /.dir-locals.el
parent0898cfad5ef2d7c000e9c23e9205e02aec18cc24 (diff)
Add a .dir-locals.el file for the benefit of emacs users
This file causes emacs to automatically set the correct style variables to control indentation, etc. One more thing to make it easier for everyone to collaborate with a consistent coding style. Signed-off-by: Jameson Rollins <jrollins@finestructure.net>
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 00000000..cbdb1f97
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1,7 @@
+; emacs local configuration settings for notmuch source
+; surmised by dkg on 2010-11-23 13:43:18-0500
+
+((c-mode . ((indent-tabs-mode . t)
+ (tab-width . 8)
+ (c-basic-offset . 4)
+ (c-file-style . "linux"))))