Push the lines all the way to column 72

This commit is contained in:
Anthony Rose 2019-06-03 15:36:02 +01:00
parent 76d2f4dc01
commit 9d100c6c13

10
vimrc
View file

@ -5,14 +5,14 @@
" Includes parts from Tim Pope's «sensible.vim» " Includes parts from Tim Pope's «sensible.vim»
" <https://github.com/tpope/vim-sensible>. " <https://github.com/tpope/vim-sensible>.
" ===================================================================== " ======================================================================
" Load Pathogen if Vim does not support packages. " Load Pathogen if Vim does not support packages.
if !has("packages") if !has("packages")
runtime pack/acp/opt/vim-pathogen/autoload/pathogen.vim runtime pack/acp/opt/vim-pathogen/autoload/pathogen.vim
execute pathogen#infect('pack/acp/start/{}') execute pathogen#infect('pack/acp/start/{}')
endif endif
" ===================================================================== " ======================================================================
" General settings for all builds. " General settings for all builds.
inoremap <down> <nop> inoremap <down> <nop>
@ -68,7 +68,7 @@ set viminfo="NONE"
set wildmenu set wildmenu
set wrap set wrap
" ===================================================================== " ======================================================================
" General settings for non-minimal Vim builds. " General settings for non-minimal Vim builds.
if has("eval") if has("eval")
@ -100,7 +100,7 @@ if has("eval")
endif endif
endif endif
" ===================================================================== " ======================================================================
" Settings based on feature detection. " Settings based on feature detection.
if has("autocmd") if has("autocmd")
@ -158,6 +158,6 @@ if has("syntax")
syntax on syntax on
endif endif
" ===================================================================== " ======================================================================
" End of config file. " End of config file.
" vim:set ft=vim et sw=4: " vim:set ft=vim et sw=4: