Use blank statusline

This commit is contained in:
Marco Hinz 2013-07-19 01:51:02 +02:00
parent 1e8d6142ec
commit 98aaf4e70c

View file

@ -28,7 +28,8 @@ function! startify#insane_in_the_membrane() abort
endif endif
endfor endfor
endif endif
setlocal nonumber noswapfile nolist bufhidden=wipe
setlocal nonumber noswapfile nolist bufhidden=wipe statusline=\
if (v:version >= 703) if (v:version >= 703)
setlocal norelativenumber setlocal norelativenumber
endif endif
@ -41,13 +42,11 @@ function! startify#insane_in_the_membrane() abort
let s:offset_header += len(g:startify_custom_header) let s:offset_header += len(g:startify_custom_header)
endif endif
let sep = startify#get_separator()
let cnt = 0
if s:show_special if s:show_special
call append('$', ' [e] <empty buffer>') call append('$', ' [e] <empty buffer>')
endif endif
let cnt = 0
if s:show_dir if s:show_dir
let cnt = s:show_dir(cnt) let cnt = s:show_dir(cnt)
endif endif