From 3819b8e53accfe6bf14a026f6ec38b9c739fb2ff Mon Sep 17 00:00:00 2001 From: Bert Peters Date: Fri, 3 Jun 2016 13:08:17 +0200 Subject: [PATCH] Correct markdown line width. --- vim/.vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vim/.vimrc b/vim/.vimrc index ac009a9..4e28dc8 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -30,7 +30,7 @@ let g:syntastic_cpp_compiler="g++" let g:syntastic_cpp_compiler_options = "-std=c++11 -Wall -Wextra -Wpedantic" autocmd Filetype python setlocal expandtab -autocmd Filetype markdown setlocal textwidth=79 +autocmd Filetype markdown setlocal textwidth=72 " Remove trailing whitespace, always. autocmd BufWritePre * :%s/\s\+$//e