aboutsummaryrefslogtreecommitdiff
path: root/lisp/.dir-locals.el
diff options
context:
space:
mode:
authorDavid Edmondson <dme@dme.org>2024-01-16 15:23:08 +0000
committermartianh <martianh@noreply.codeberg.org>2024-01-26 15:40:58 +0000
commitb8dd95b4c948a7510f26f0c98747b4187da28048 (patch)
treebc1634665af09e819fbf5a10f749eb345227b9b2 /lisp/.dir-locals.el
parentf0137a0ad60df4ac8b78020f155e33f733493027 (diff)
dir-locals: Set indent-tab-mode to nil
Diffstat (limited to 'lisp/.dir-locals.el')
-rw-r--r--lisp/.dir-locals.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/.dir-locals.el b/lisp/.dir-locals.el
index 44e84e5..bcb8ba5 100644
--- a/lisp/.dir-locals.el
+++ b/lisp/.dir-locals.el
@@ -1,5 +1,7 @@
;;; Directory Local Variables
;;; For more information see (info "(emacs) Directory Variables")
-;; setting this makes package-lint look in the main file for deps:
-((emacs-lisp-mode . ((package-lint-main-file . "mastodon.el"))))
+;; Preferred indentation style:
+((nil . ((indent-tabs-mode . nil)))
+ ;; setting this makes package-lint look in the main file for deps:
+ (emacs-lisp-mode . ((package-lint-main-file . "mastodon.el"))))