vim-sussify/plugin/startify.vim

34 lines
1.2 KiB
VimL
Raw Normal View History

2013-09-24 15:41:31 +00:00
" vim: et sw=2 sts=2
2013-04-23 14:41:02 +00:00
" Plugin: https://github.com/mhinz/vim-startify
" Description: Start screen displaying recently used stuff.
" Maintainer: Marco Hinz <http://github.com/mhinz>
2013-09-04 07:38:53 +00:00
" Version: 1.8
2013-04-23 14:41:02 +00:00
if exists('g:loaded_startify') || &cp
finish
endif
let g:loaded_startify = 1
augroup startify
if !get(g:, 'startify_disable_at_vimenter')
autocmd VimEnter *
2014-09-30 10:44:39 +00:00
\ if !argc() && (line2byte('$') == -1) && (v:progname =~? '^[gmnq]\=vim\=x\=\%[\.exe]$')
\ | call startify#insane_in_the_membrane()
2014-09-30 10:44:39 +00:00
\ | endif
\ | autocmd! startify VimEnter
endif
if get(g:, 'startify_session_persistence')
autocmd startify VimLeave *
2014-09-30 10:44:39 +00:00
\ if exists('v:this_session') && filewritable(v:this_session)
\ | call startify#session_write(fnameescape(v:this_session))
\ | endif
endif
2013-04-23 14:41:02 +00:00
augroup END
2013-05-25 09:08:22 +00:00
command! -nargs=? -bar -complete=customlist,startify#session_list SSave call startify#session_save(<f-args>)
command! -nargs=? -bar -complete=customlist,startify#session_list SLoad call startify#session_load(<f-args>)
command! -nargs=? -bar -complete=customlist,startify#session_list SDelete call startify#session_delete(<f-args>)
command! -nargs=0 -bar Startify call startify#insane_in_the_membrane()