From d26412d71d1e8ad3bb7440844698a5c983ad205d Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sun, 7 Nov 2021 13:39:57 +0200 Subject: [PATCH] Change the text width in Vim to 79. Match other places (like flake8) and it shouldn't overflow. --- .vimrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vimrc b/.vimrc index 5c5b589..aa04d84 100644 --- a/.vimrc +++ b/.vimrc @@ -2,7 +2,7 @@ filetype plugin indent on setlocal tabstop=4 setlocal softtabstop=4 setlocal shiftwidth=4 -setlocal textwidth=80 +setlocal textwidth=79 setlocal smarttab setlocal expandtab setlocal incsearch -- GitLab