From 40e98e5bfa195f65238ef8b742f6176910870784 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 8 Mar 2025 18:26:56 +0100 Subject: [PATCH] Allow wider git commit messages No need to restrict to 72 characters per line. --- init.el | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/init.el b/init.el index 972c274..d75ae8b 100644 --- a/init.el +++ b/init.el @@ -1427,10 +1427,7 @@ Note that this workaround is incomplete, as explained in this comment." (use-package git-commit :commands (global-git-commit-mode) :init (setq git-commit-style-convention-checks '(non-empty-second-line - overlong-summary-line)) - :config (add-hook 'git-commit-setup-hook - #'(lambda () - (setq fill-column 72)))) + overlong-summary-line))) (use-package highlight-indentation :commands highlight-indentation-mode)