From c8a83009dcb972fe414937871ac696e6c0e8f85f Mon Sep 17 00:00:00 2001 From: Protesilaos Stavrou Date: Mon, 4 Jul 2022 09:34:24 +0300 Subject: [PATCH] Add .dir-locals to disable tabs in the code Basically saves us from running M-x untabify on potential contributions. --- .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 0000000..1f7c4b7 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,4 @@ +;;; Directory Local Variables +;;; For more information see (info "(emacs) Directory Variables") + +((emacs-lisp-mode . ((indent-tabs-mode . nil))))