dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit 2250cf7b15e4ab4e09d2715d4e44b3ef9c46794d
parent 5fd19d756f1bc1b1b6d8f244fac32931d30f7ae7
Author: Chris Bracken <chris@bracken.jp>
Date:   Tue, 23 Mar 2021 15:21:51 -0700

Use 80 cols for text, markdown, wiki

72 is nice for being able to copy-paste to email, but a little too short
for standard editing reading, particularly for markdown/wiki files.

Diffstat:
M.vim/vimrc | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.vim/vimrc b/.vim/vimrc @@ -171,8 +171,8 @@ if &t_Co > 2 " Highlight over-length lines au BufEnter,InsertLeave * set colorcolumn=80 - au BufEnter,InsertLeave *.txt,*.md,*.wiki set colorcolumn=72 - au BufEnter,InsertLeave *.txt,*.md,*.wiki set textwidth=72 + au BufEnter,InsertLeave *.txt,*.md,*.wiki set colorcolumn=80 + au BufEnter,InsertLeave *.txt,*.md,*.wiki set textwidth=80 au BufEnter,InsertLeave *.java,*.m,*.mm set colorcolumn=100 au BufEnter,InsertLeave *.java,*.m,*.mm set textwidth=100