From 07ca35c8fc1bff0f6101ef93ecc666bf62bbaf62 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Mon, 10 Apr 2017 14:37:24 +0100 Subject: [PATCH] Fit the separators onto one line in the console --- vimrc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vimrc b/vimrc index e28dee5..8d3e71a 100644 --- a/vimrc +++ b/vimrc @@ -5,14 +5,14 @@ " Includes parts from Tim Pope's «sensible.vim» " . -" ====================================================================== +" ===================================================================== " 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. inoremap @@ -68,7 +68,7 @@ set viminfo="NONE" set wildmenu set wrap -" ====================================================================== +" ===================================================================== " General settings for non-minimal Vim builds. if has("eval") @@ -96,7 +96,7 @@ if &t_Co == 8 && $TERM !~# '^linux\|^Eterm' set t_Co=16 endif -" ====================================================================== +" ===================================================================== " Settings based on feature detection. if has("autocmd") @@ -144,6 +144,6 @@ if has("syntax") syntax on endif -" ====================================================================== +" ===================================================================== " End of config file. " vim:set ft=vim et sw=4: