vim: autopep8 on save enabled

This commit is contained in:
Dirk Alders 2023-04-10 07:37:29 +02:00
parent f7ca9b974a
commit 346a572ce2

6
vimrc
View File

@ -53,6 +53,12 @@ set expandtab
" Indent using four spaces. " Indent using four spaces.
set tabstop=4 set tabstop=4
"
" PEP8 rules
"
let g:autopep8_max_line_length=150
let g:autopep8_on_save = 1
" "
" Search Options " Search Options
" "