From b7579b0a9b801c1400607d4a1242ad7fb4c09cba Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 8 Oct 2019 16:42:23 +0200 Subject: [PATCH] [UPDATE][VIM] Use 88 columns limit on python files --- vim/.vim/ftplugin/python.vim | 3 +++ 1 file changed, 3 insertions(+) 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