From 3e0ab38cf913c3947750e1033d54cf0e163a3602 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 1 Nov 2009 15:40:43 +0100 Subject: [PATCH] vimrc: Use 72 characters per line in git commit messages. --- vimrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vimrc b/vimrc index d8ed984..dd39b58 100644 --- a/vimrc +++ b/vimrc @@ -254,8 +254,11 @@ if has('autocmd') autocmd FileType crontab setlocal backupcopy=yes " Don't use the modeline as the diff created by `git commit -v` may contain " one which could change the filetype or other settings of the commit window. +" Also make sure we use only 72 characters per line which is the +" recommondation for git commit messages (http://tpope.net/node/106). autocmd FileType gitcommit setlocal nomodeline | - \ let g:secure_modelines_allowed_items = [] + \ let g:secure_modelines_allowed_items = [] | + \ setlocal textwidth=72 " Allow folding in perl. autocmd FileType perl let perl_fold = 1 | \ let perl_fold_blocks = 1 -- 2.44.1