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
|
2015-04-28 13:34:11 +00:00
|
|
|
" Description: A fancy start screen for Vim.
|
2013-04-23 14:41:02 +00:00
|
|
|
" Maintainer: Marco Hinz <http://github.com/mhinz>
|
|
|
|
|
|
|
|
if exists('g:loaded_startify') || &cp
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_startify = 1
|
2015-03-02 21:06:10 +00:00
|
|
|
let g:startify_locked = 0
|
2013-04-23 14:41:02 +00:00
|
|
|
|
|
|
|
augroup startify
|
2013-09-24 16:17:26 +00:00
|
|
|
if !get(g:, 'startify_disable_at_vimenter')
|
2015-02-11 13:58:10 +00:00
|
|
|
autocmd VimEnter * nested call s:genesis()
|
2013-09-24 16:17:26 +00:00
|
|
|
endif
|
2014-06-11 10:14:21 +00:00
|
|
|
|
|
|
|
if get(g:, 'startify_session_persistence')
|
2015-02-11 13:58:10 +00:00
|
|
|
autocmd VimLeave * call s:extinction()
|
2014-06-11 10:14:21 +00:00
|
|
|
endif
|
2015-03-02 21:06:10 +00:00
|
|
|
|
|
|
|
autocmd QuickFixCmdPre *vimgrep* let g:startify_locked = 1
|
|
|
|
autocmd QuickFixCmdPost *vimgrep* let g:startify_locked = 0
|
2013-04-23 14:41:02 +00:00
|
|
|
augroup END
|
|
|
|
|
2015-12-25 15:19:10 +00:00
|
|
|
function! s:update_oldfiles(file)
|
|
|
|
if g:startify_locked || !exists('v:oldfiles')
|
|
|
|
return
|
|
|
|
endif
|
|
|
|
let idx = index(v:oldfiles, a:file)
|
|
|
|
if idx != -1
|
|
|
|
call remove(v:oldfiles, idx)
|
|
|
|
endif
|
|
|
|
call insert(v:oldfiles, a:file, 0)
|
|
|
|
endfunction
|
|
|
|
|
2015-02-11 13:58:10 +00:00
|
|
|
function! s:genesis()
|
2015-11-03 12:05:46 +00:00
|
|
|
if !argc() && (line2byte('$') == -1)
|
2015-02-11 13:58:10 +00:00
|
|
|
if get(g:, 'startify_session_autoload') && filereadable('Session.vim')
|
|
|
|
source Session.vim
|
|
|
|
else
|
|
|
|
call startify#insane_in_the_membrane()
|
|
|
|
endif
|
|
|
|
endif
|
2015-08-06 22:15:28 +00:00
|
|
|
autocmd startify BufNewFile,BufRead,BufFilePre *
|
2015-12-25 15:19:10 +00:00
|
|
|
\ call s:update_oldfiles(expand('<afile>'))
|
2015-02-11 13:58:10 +00:00
|
|
|
autocmd! startify VimEnter
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:extinction()
|
|
|
|
if exists('v:this_session') && filewritable(v:this_session)
|
|
|
|
call startify#session_write(fnameescape(v:this_session))
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
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>)
|
2015-01-05 21:06:20 +00:00
|
|
|
command! -nargs=0 -bar SClose call startify#session_close()
|
2015-03-25 15:05:26 +00:00
|
|
|
command! -nargs=0 -bar Startify enew | call startify#insane_in_the_membrane()
|
2015-06-01 15:07:40 +00:00
|
|
|
command! -nargs=0 -bar StartifyDebug call startify#debug()
|
2014-11-22 17:15:29 +00:00
|
|
|
|
|
|
|
nnoremap <silent><plug>(startify-open-buffers) :<c-u>call startify#open_buffers()<cr>
|