]> git.notmuchmail.org Git - notmuch/commitdiff
Add a .dir-locals.el file for the benefit of emacs users
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Wed, 24 Nov 2010 05:45:43 +0000 (00:45 -0500)
committerCarl Worth <cworth@cworth.org>
Wed, 18 May 2011 23:11:53 +0000 (16:11 -0700)
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>
.dir-locals.el [new file with mode: 0644]

diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644 (file)
index 0000000..cbdb1f9
--- /dev/null
@@ -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"))))