LunarVim/plug-config/start-screen.vim

40 lines
1.3 KiB
VimL
Raw Normal View History

2020-04-30 02:53:09 +02:00
let g:startify_custom_header = [
2020-08-29 20:30:22 +02:00
\ ' _ ___ ________ __ ',
\ ' / | / / | / / ____/___ ____/ /__ ',
\ ' / |/ /| | / / / / __ \/ __ / _ \',
\ ' / /| / | |/ / /___/ /_/ / /_/ / __/',
\ ' /_/ |_/ |___/\____/\____/\__,_/\___/ ',
2020-04-30 02:53:09 +02:00
\]
2020-08-29 20:30:22 +02:00
2020-04-30 02:53:09 +02:00
let g:startify_session_dir = '~/.config/nvim/session'
let g:startify_lists = [
\ { 'type': 'files', 'header': [' Files'] },
\ { 'type': 'sessions', 'header': [' Sessions'] },
\ { 'type': 'bookmarks', 'header': [' Bookmarks'] },
\ ]
2021-03-12 18:18:51 +01:00
" \ { 'type': 'dir', 'header': [' Current Directory '. getcwd()] },
2020-04-30 02:53:09 +02:00
let g:startify_session_autoload = 1
let g:startify_session_delete_buffers = 1
let g:startify_change_to_vcs_root = 1
let g:startify_fortune_use_unicode = 1
let g:startify_session_persistence = 1
2020-05-10 19:29:31 +02:00
let g:webdevicons_enable_startify = 1
function! StartifyEntryFormat()
return 'WebDevIconsGetFileTypeSymbol(absolute_path) ." ". entry_path'
endfunction
2020-04-30 02:53:09 +02:00
let g:startify_bookmarks = [
2021-03-12 18:18:51 +01:00
\ { 'b': '~/Blog' },
2020-04-30 02:53:09 +02:00
\ { 'i': '~/.config/nvim/init.vim' },
\ { 'z': '~/.zshrc' },
\ ]
let g:startify_enable_special = 0