Set the default text width to 80 and cleaned up associated comments

This commit is contained in:
Kevin MacMartin 2014-10-21 11:16:46 -04:00
parent 5914aceb5d
commit 75557104d1
2 changed files with 2 additions and 1 deletions

View file

@ -14,7 +14,7 @@ if !exists('g:loaded_matchit') && findfile('plugin/matchit.vim', &rtp) ==# ''
runtime! macros/matchit.vim
endif
"disable linebreaks by default or override all of them (default: 1)
"when enabled, this will override each file type default and disable all line breaks (default: 1)
if !exists("g:disablelinebreaks")
let g:disablelinebreaks=1
endif

View file

@ -51,6 +51,7 @@
set formatoptions=roqnl12 "how automatic formatting is to be done
set diffopt=foldcolumn:0,filler "vimdiff default settings
set foldmethod=syntax foldcolumn=1 foldlevel=5 "fold layers 5 or more deep
set tw=80 "set the default text width to 80 when nothing overrides this
"}}}
"USER INTERFACE: {{{