From 9eadacb243f1deaafe71fdaa8c5b95374f1749f1 Mon Sep 17 00:00:00 2001 From: Akib Azmain Turja Date: Sat, 26 Nov 2022 22:08:52 +0600 Subject: [PATCH] ; * .dir-locals.el: No tabs and 70 column limit --- .dir-locals.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.dir-locals.el b/.dir-locals.el index 433dfac..dd01ae6 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,4 +1,6 @@ ;;; Directory Local Variables -*- no-byte-compile: t -*- ;;; For more information see (info "(emacs) Directory Variables") -((sh-mode . ((sh-basic-offset . 2)))) +((nil . ((fill-column . 70) + (indent-tabs-mode . nil))) + (sh-mode . ((sh-basic-offset . 2))))