From 86036536ef2720ab5722b6e498f64ab67fe9d14c Mon Sep 17 00:00:00 2001 From: Lou Berger Date: Thu, 10 Aug 2017 14:07:28 -0400 Subject: [PATCH] Initial take on project emacs variables file and settings. Sets tabs for c-mode. --- .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 0000000000..fc70462d40 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,7 @@ +;;; Directory Local Variables +;;; For more information see (info "(emacs) Directory Variables") +;;; Match project coding conventions +((c-mode + (indent-tabs-mode . t) + (c-basic-offset . 8))) + -- 2.39.5