From af03e075a3c0dfe5ca17fd49c59a3f4c30a4b342 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Tue, 1 Oct 2019 17:23:10 +0200 Subject: [PATCH] Pad default header --- autoload/startify.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index fb1aa8f..8e49e55 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -84,7 +84,7 @@ function! startify#insane_in_the_membrane(on_vimenter) abort " Must be global so that it can be read by syntax/startify.vim. let g:startify_header = exists('g:startify_custom_header') \ ? s:set_custom_section(g:startify_custom_header) - \ : (exists('*strwidth') ? startify#fortune#cowsay() : []) + \ : (exists('*strwidth') ? startify#pad(startify#fortune#cowsay()) : []) if !empty(g:startify_header) let g:startify_header += [''] " add blank line endif