diff --git a/vim/.vim/ftplugin/python.vim b/vim/.vim/ftplugin/python.vim index b432265..24539c9 100644 --- a/vim/.vim/ftplugin/python.vim +++ b/vim/.vim/ftplugin/python.vim @@ -1,2 +1,5 @@ " Use black as ALE fixer for python let b:ale_fixers=[ 'black' ] + +" Change max length of a line to 88 for this buffer to match black's settings +setlocal colorcolumn=88