From 82fff2912a2835f1b8391aff4efdd8f6c63ab588 Mon Sep 17 00:00:00 2001 From: Dmitry Ilvokhin Date: Sat, 20 Apr 2024 19:34:31 +0100 Subject: Wrap text at 72 width for mail messages --- misc/dotfiles/vimrc | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'misc') diff --git a/misc/dotfiles/vimrc b/misc/dotfiles/vimrc index 3dd8336..2b78b0e 100644 --- a/misc/dotfiles/vimrc +++ b/misc/dotfiles/vimrc @@ -7,25 +7,28 @@ syntax on " Expand tabs to spaces. set expandtab -" In Makefiles, don't expand tabs to spaces, since we need the actual tabs. -autocmd FileType make setlocal noexpandtab - " Use four-space indentation by default. set tabstop=4 set softtabstop=4 set shiftwidth=4 +" Limit text width. +set textwidth=79 + +" In Makefiles, don't expand tabs to spaces, since we need the actual tabs. +autocmd FileType make setlocal noexpandtab + " Use two-space indentation for yaml files. autocmd FileType yaml setlocal tabstop=2 autocmd FileType yaml setlocal softtabstop=2 autocmd FileType yaml setlocal shiftwidth=2 -" Limit text width. -set textwidth=79 - " Limit width to 72 columns for git commit messages. autocmd FileType gitcommit setlocal textwidth=72 +" And mail messages as well. +autocmd FileType mail setlocal textwidth=72 + " Disable incremental search. set noincsearch -- cgit v1.2.3-70-g09d2