6 lines
168 B
VimL
6 lines
168 B
VimL
" 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
|