From d133dc9440aaace963f6794c99619e24362f846e Mon Sep 17 00:00:00 2001 From: Konstantin Kharlamov Date: Sat, 24 Feb 2018 18:55:34 +0300 Subject: [PATCH] indentation: add .dir-locals.el for emacs It's pretty basic as compared to e.g. one of Mesa, but I don't see what else could be needed, and if anything, it can be added later. Signed-off-by: Konstantin Kharlamov Signed-off-by: Peter Hutterer --- .dir-locals.el | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 00000000..4ef2d135 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,4 @@ +((nil . ((indent-tabs-mode . t) + (tab-width . 8) + (fill-column . 80))) + (c-mode . ((c-basic-offset . 8))))