From be1ba1ce68058038e8e695f8df9c9927e50d2dae Mon Sep 17 00:00:00 2001 From: Jonas Bernoulli Date: Tue, 11 Feb 2020 11:38:06 +0100 Subject: [PATCH] mu4e: Enforce use of spaces for indentation There already is a ".editorconfig" file for cross-editor configuration, but most Emacs users don't use that, so this also has to be configured the traditional Emacs way. (Also I have some doubts that cross-editor configuration is relevant for Emacs Lisp files.) --- .dir-locals.el | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 00000000..3a491ef9 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,2 @@ +((emacs-lisp-mode + (indent-tabs-mode . nil)))