" Plugin: https://github.com/mhinz/vim-startify " Description: Start screen displaying recently used stuff. " Maintainer: Marco Hinz " Version: 1.7 if exists('g:loaded_startify') || &cp finish endif let g:loaded_startify = 1 augroup startify autocmd! autocmd startify VimEnter * \ if !argc() && (line2byte('$') == -1) && (v:progname =~? '^[gm]\=vim\%[\.exe]$') | \ call startify#insane_in_the_membrane() | \ endif | \ autocmd! startify VimEnter augroup END command! -nargs=? -bar -complete=customlist,startify#session_list SSave call startify#session_save() command! -nargs=? -bar -complete=customlist,startify#session_list SLoad call startify#session_load() command! -nargs=? -bar -complete=customlist,startify#session_list SDelete call startify#session_delete() command! -nargs=0 -bar Startify enew | call startify#insane_in_the_membrane() " vim: et sw=2 sts=2