From 73529d673de0cd9da083cdb8d210914aae1db2c0 Mon Sep 17 00:00:00 2001 From: Julian Prein Date: Fri, 23 Jun 2023 23:14:56 +0200 Subject: [PATCH] vim:ftplugin:python: Change textwidth to 88 --- .config/vim/ftplugin/python.vim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/vim/ftplugin/python.vim b/.config/vim/ftplugin/python.vim index bd975de..12509ed 100644 --- a/.config/vim/ftplugin/python.vim +++ b/.config/vim/ftplugin/python.vim @@ -4,8 +4,8 @@ setlocal shiftwidth=0 setlocal expandtab " Delete all 4 spaces when pressing backspace setlocal smarttab -" PEP-8 wants 79 as maximum line length -setlocal textwidth=79 +" Use black's default +setlocal textwidth=88 " Lines with equal indent form a fold setlocal foldmethod=indent " Open all folds after they were closed automatically by foldmethod=indent