From e75c49a33916ab56239968e5c2db507f43408794 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Sun, 27 Dec 2015 21:05:09 +0100 Subject: [PATCH] Shorter section headers Use shorter section headers and add the current working directory to the 'dir' list. References #193. --- autoload/startify.vim | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/autoload/startify.vim b/autoload/startify.vim index 945fc8f..f818285 100644 --- a/autoload/startify.vim +++ b/autoload/startify.vim @@ -97,14 +97,10 @@ function! startify#insane_in_the_membrane() abort let b:startify_section_header_lines = [] let s:lists = get(g:, 'startify_list_order', [ - \ [' Most recently used files:'], - \ 'files', - \ [' Most recently used files in the current directory:'], - \ 'dir', - \ [' My sessions:'], - \ 'sessions', - \ [' My bookmarks:'], - \ 'bookmarks', + \ [' MRU'], 'files', + \ [' MRU '. getcwd()], 'dir', + \ [' Sessions'], 'sessions', + \ [' Bookmarks'], 'bookmarks', \ ]) for item in s:lists