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>
This commit is contained in:
Daniel Kahn Gillmor 2010-11-24 00:45:43 -05:00 committed by Carl Worth
parent 0898cfad5e
commit bab77c9084

7
.dir-locals.el Normal file
View file

@ -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"))))