From bab77c90844eede014fcf79414bab38add83a3b9 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Wed, 24 Nov 2010 00:45:43 -0500 Subject: [PATCH] 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 --- .dir-locals.el | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .dir-locals.el 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")))) -- 2.43.0