From 47e6ae3a5a78852eb928f8fc55fc8f7f5aed21ff Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Sun, 8 Sep 2019 19:13:01 +0100 Subject: [PATCH] Make separators the wrap width and increase header spacing slightly --- vimrc | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/vimrc b/vimrc index cd89e41..697df01 100644 --- a/vimrc +++ b/vimrc @@ -1,23 +1,24 @@ " Anthony Perkins " https://git.acperkins.com/acp/vimfiles +" " Distributed under the VIM license. See ':help license' for a copy. " Files under pack/ have their own licenses. " " Includes parts from Tim Pope's «sensible.vim» " . -" ====================================================================== +"============================================================================= " Set this first to avoid overwriting later settings. set nocompatible -" ====================================================================== +"============================================================================= " Load Pathogen if Vim does not support packages. if !has("packages") runtime pack/acp/opt/vim-pathogen/autoload/pathogen.vim execute pathogen#infect('pack/acp/start/{}') endif -" ====================================================================== +"============================================================================= " General settings for all builds. nmap @@ -74,7 +75,7 @@ set ttimeoutlen=100 set ttyfast set wrap -" ====================================================================== +"============================================================================= " General settings for non-minimal Vim builds. if has("eval") @@ -107,7 +108,7 @@ if has("eval") colorscheme PaperColor endif -" ====================================================================== +"============================================================================= " Settings based on feature detection. if has("autocmd") @@ -166,6 +167,6 @@ if has("wildmenu") set wildmenu endif -" ====================================================================== +"============================================================================= " End of config file. " vim:set ft=vim: