From a9d533699a7da28c00fdf2d34e01a817aad21cb9 Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Fri, 2 Sep 2022 22:29:26 +0000 Subject: [PATCH] Add a .dir-locals.el to avoid whitespace issue --- .dir-locals.el | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..6d22de3 --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,6 @@ +;;; Directory Local Variables +;;; For more information see (info "(emacs) Directory Variables") + +((emacs-lisp-mode + (show-trailing-whitespace . t) + (indent-tabs-mode . nil)))