vim:ftplugin:python: Change textwidth to 88

This commit is contained in:
2023-06-23 23:14:56 +02:00
parent 40dad5f672
commit 73529d673d

View File

@@ -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