From ab44e2ee8e533361d7bb505bc406a68ab2a9a96e Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Mon, 15 Sep 2025 13:06:46 +0300 Subject: [PATCH] dot_vimrc: adjust column width Don't force wrapping at 80. --- dot_vimrc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dot_vimrc b/dot_vimrc index e03f193..6701ea5 100644 --- a/dot_vimrc +++ b/dot_vimrc @@ -6,8 +6,7 @@ set expandtab " tabs are spaces set backspace=2 " backspace like in a graphical text editor set wildmode=longest,list " change filename autocomplete to be more like bash set mouse=v " some vim defaults to mouse=a, which sucks for copying and pasting in Xorg -set textwidth=80 " set textwidth to 80 characters -set colorcolumn=+1 " make it obvious where 80 characters is +set colorcolumn=81 " make it obvious where 80 characters is syntax on filetype on " enable file type detection filetype plugin on " enable file type plugins