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
|
|
|
|
2019-05-10 22:34:00 +00:00
|
|
|
if !get(g:, 'startify_disable_at_vimenter') && (!has('nvim') || has('nvim-0.3.5'))
|
|
|
|
" Only for Nvim v0.3.5+: https://github.com/neovim/neovim/issues/9885
|
2017-02-26 02:39:09 +00:00
|
|
|
set shortmess+=I
|
|
|
|
endif
|
|
|
|
|
2013-04-23 14:41:02 +00:00
|
|
|
augroup startify
|
2018-04-09 15:08:20 +00:00
|
|
|
autocmd VimEnter * nested call s:on_vimenter()
|
|
|
|
autocmd VimLeavePre * nested call s:on_vimleavepre()
|
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
|
|
|
|
|
2018-04-09 15:08:20 +00:00
|
|
|
function! s:on_vimenter()
|
2023-09-20 11:34:02 +00:00
|
|
|
if !argc() && line('$') == 1 && getline('.') == ''
|
2015-02-11 13:58:10 +00:00
|
|
|
if get(g:, 'startify_session_autoload') && filereadable('Session.vim')
|
|
|
|
source Session.vim
|
2016-03-20 15:27:38 +00:00
|
|
|
elseif !get(g:, 'startify_disable_at_vimenter')
|
2019-01-12 21:13:35 +00:00
|
|
|
call startify#insane_in_the_membrane(1)
|
2015-02-11 13:58:10 +00:00
|
|
|
endif
|
|
|
|
endif
|
2016-03-07 12:21:16 +00:00
|
|
|
if get(g:, 'startify_update_oldfiles')
|
|
|
|
call map(v:oldfiles, 'fnamemodify(v:val, ":p")')
|
|
|
|
autocmd startify BufNewFile,BufRead,BufFilePre *
|
|
|
|
\ call s:update_oldfiles(expand('<afile>:p'))
|
|
|
|
endif
|
2015-02-11 13:58:10 +00:00
|
|
|
autocmd! startify VimEnter
|
|
|
|
endfunction
|
|
|
|
|
2018-04-09 15:08:20 +00:00
|
|
|
function! s:on_vimleavepre()
|
2017-02-25 21:35:04 +00:00
|
|
|
if get(g:, 'startify_session_persistence')
|
|
|
|
\ && exists('v:this_session')
|
|
|
|
\ && filewritable(v:this_session)
|
2015-02-11 13:58:10 +00:00
|
|
|
call startify#session_write(fnameescape(v:this_session))
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
2019-01-29 22:29:59 +00:00
|
|
|
command! -nargs=? -bar -bang -complete=customlist,startify#session_list SLoad call startify#session_load(<bang>0, <f-args>)
|
2017-11-21 19:13:48 +00:00
|
|
|
command! -nargs=? -bar -bang -complete=customlist,startify#session_list SSave call startify#session_save(<bang>0, <f-args>)
|
2016-02-02 13:54:58 +00:00
|
|
|
command! -nargs=? -bar -bang -complete=customlist,startify#session_list SDelete call startify#session_delete(<bang>0, <f-args>)
|
2015-01-05 21:06:20 +00:00
|
|
|
command! -nargs=0 -bar SClose call startify#session_close()
|
2019-01-12 21:13:35 +00:00
|
|
|
command! -nargs=0 -bar Startify call startify#insane_in_the_membrane(0)
|
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>
|