From: Daniel Kahn Gillmor Date: Wed, 24 Nov 2010 05:45:43 +0000 (-0500) Subject: Add a .dir-locals.el file for the benefit of emacs users X-Git-Tag: debian/0.6_254~144 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=bab77c90844eede014fcf79414bab38add83a3b9 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 --- 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"))))