From 346a572ce21ae2b22055f9216c7d12feb1302af6 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Mon, 10 Apr 2023 07:37:29 +0200 Subject: [PATCH] vim: autopep8 on save enabled --- vimrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vimrc b/vimrc index cbefd02..691d431 100644 --- a/vimrc +++ b/vimrc @@ -53,6 +53,12 @@ set expandtab " Indent using four spaces. set tabstop=4 +" +" PEP8 rules +" +let g:autopep8_max_line_length=150 +let g:autopep8_on_save = 1 + " " Search Options "