Make separators the wrap width and increase header spacing slightly
This commit is contained in:
parent
b238b7a47e
commit
47e6ae3a5a
1 changed files with 7 additions and 6 deletions
13
vimrc
13
vimrc
|
@ -1,23 +1,24 @@
|
||||||
" Anthony Perkins
|
" Anthony Perkins
|
||||||
" https://git.acperkins.com/acp/vimfiles
|
" https://git.acperkins.com/acp/vimfiles
|
||||||
|
"
|
||||||
" Distributed under the VIM license. See ':help license' for a copy.
|
" Distributed under the VIM license. See ':help license' for a copy.
|
||||||
" Files under pack/ have their own licenses.
|
" Files under pack/ have their own licenses.
|
||||||
"
|
"
|
||||||
" 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>.
|
||||||
|
|
||||||
" ======================================================================
|
"=============================================================================
|
||||||
" Set this first to avoid overwriting later settings.
|
" Set this first to avoid overwriting later settings.
|
||||||
set nocompatible
|
set nocompatible
|
||||||
|
|
||||||
" ======================================================================
|
"=============================================================================
|
||||||
" 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.
|
||||||
|
|
||||||
nmap <space> <leader>
|
nmap <space> <leader>
|
||||||
|
@ -74,7 +75,7 @@ set ttimeoutlen=100
|
||||||
set ttyfast
|
set ttyfast
|
||||||
set wrap
|
set wrap
|
||||||
|
|
||||||
" ======================================================================
|
"=============================================================================
|
||||||
" General settings for non-minimal Vim builds.
|
" General settings for non-minimal Vim builds.
|
||||||
|
|
||||||
if has("eval")
|
if has("eval")
|
||||||
|
@ -107,7 +108,7 @@ if has("eval")
|
||||||
colorscheme PaperColor
|
colorscheme PaperColor
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" ======================================================================
|
"=============================================================================
|
||||||
" Settings based on feature detection.
|
" Settings based on feature detection.
|
||||||
|
|
||||||
if has("autocmd")
|
if has("autocmd")
|
||||||
|
@ -166,6 +167,6 @@ if has("wildmenu")
|
||||||
set wildmenu
|
set wildmenu
|
||||||
endif
|
endif
|
||||||
|
|
||||||
" ======================================================================
|
"=============================================================================
|
||||||
" End of config file.
|
" End of config file.
|
||||||
" vim:set ft=vim:
|
" vim:set ft=vim:
|
||||||
|
|
Loading…
Reference in a new issue