start-screen.vim 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. let g:startify_custom_header = [
  2. \ ' _ __ _ __ ___ __ ___ ',
  3. \ ' / |/ / __(_)_ _ / |/ /__ _____/ / |_ |',
  4. \ ' / / |/ / / ` \ / /|_/ / _ `/ __/ _ \ / __/ ',
  5. \ '/_/|_/|___/_/_/_/_/ /_/ /_/\_,_/\__/_//_/ /____/ ',
  6. \]
  7. let g:startify_session_dir = '~/.config/nvim/session'
  8. let g:startify_lists = [
  9. \ { 'type': 'files', 'header': [' Files'] },
  10. \ { 'type': 'dir', 'header': [' Current Directory '. getcwd()] },
  11. \ { 'type': 'sessions', 'header': [' Sessions'] },
  12. \ { 'type': 'bookmarks', 'header': [' Bookmarks'] },
  13. \ ]
  14. let g:startify_session_autoload = 1
  15. let g:startify_session_delete_buffers = 1
  16. let g:startify_change_to_vcs_root = 1
  17. let g:startify_fortune_use_unicode = 1
  18. let g:startify_session_persistence = 1
  19. let g:startify_bookmarks = [
  20. \ { 'i': '~/.config/nvim/init.vim' },
  21. \ { 'z': '~/.zshrc' },
  22. \ '~/Blog',
  23. \ '~/Code',
  24. \ ]
  25. let g:startify_enable_special = 0