mirror of
https://github.com/prurigro/darkcloud-nvimconfig.git
synced 2024-11-09 23:06:38 -05:00
Set the default text width to 80 and cleaned up associated comments
This commit is contained in:
parent
5914aceb5d
commit
75557104d1
2 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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: {{{
|
||||
|
|
Loading…
Reference in a new issue