Dropped to 79 characters

I want the carriage return character that I have visible to exceed the
80th column. Wrapping at 79 to alleviate this
This commit is contained in:
Josh Sherman 2015-06-21 09:30:53 -04:00
parent 83ed2fac1f
commit 0f255b98f0

View file

@ -52,7 +52,7 @@ set wildmode=list:longest
" Automatically wraps markdown and text to 80 columns
if &filetype == 'markdown' || &filetype == 'text'
set textwidth=80
set textwidth=79
set wrapmargin=2
endif