Fit the separators onto one line in the console

This commit is contained in:
Anthony Rose 2017-04-10 14:37:24 +01:00
parent bd93c75854
commit 07ca35c8fc

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")
@ -96,7 +96,7 @@ if &t_Co == 8 && $TERM !~# '^linux\|^Eterm'
set t_Co=16 set t_Co=16
endif endif
" ====================================================================== " =====================================================================
" Settings based on feature detection. " Settings based on feature detection.
if has("autocmd") if has("autocmd")
@ -144,6 +144,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: