From 2467729035e0779d37b593888ae05fe1a4a3527c Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 4 Aug 2021 01:20:15 -0400 Subject: [PATCH] tweak: fill-column = 80 for project This is to prevent incorrect line length in code/doc contributions from users who have changed fill-column in their own configs. --- .dir-locals.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.dir-locals.el b/.dir-locals.el index 069287742..f8673c51e 100644 --- a/.dir-locals.el +++ b/.dir-locals.el @@ -1,2 +1,3 @@ -((nil (git-commit-major-mode . git-commit-elisp-text-mode)) +((nil (git-commit-major-mode . git-commit-elisp-text-mode) + (fill-column . 80)) (org-mode (buffer-read-only . t)))