From e0d0ffd138e175f50873eb1407e0f640a2cbcf9c Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sat, 12 Dec 2020 14:09:46 +0100 Subject: [PATCH] [UPDATE][VIM] Do not use textwidth by default It turns out to be more of a bother than an actual improvement while programming. I will however keep it when writing markdown. I will keep `colorcolumn` at 80 as it use to be. --- vim/.vimrc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/vim/.vimrc b/vim/.vimrc index 6109807..1cb78fc 100644 --- a/vim/.vimrc +++ b/vim/.vimrc @@ -172,10 +172,8 @@ set visualbell " Disable bell completely by resetting the visual bell's escape sequence set t_vb= -" Use 80 columns -set textwidth=80 -" Highlight when after textwidth -set colorcolumn=+1 +" Color the 80th column +set colorcolumn=80 " Show whitespace set list " Show a tab as an arrow, trailing spaces as ยค, non-breaking spaces as dots