From 926e90a18a21208a4a1fa36c755c818f68b477d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Mon, 17 May 2021 00:44:27 +0200 Subject: [PATCH] .dir-locals.el: add dir-locals for Emacs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- .dir-locals.el | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000000..17c34c24a9 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,14 @@ +( + (find-file + . ( + (require-final-newline . t) + (show-trailing-whitespace . t) + (tab-width . 4) + ) + ) + (ebuild-mode + . ( + (indent-tabs-mode . t) + ) + ) + )