init.lua 1.8 KB

1234567891011121314151617181920212223242526272829303132333435
  1. vim.g.dashboard_custom_header = {
  2. '███╗ ██╗██╗ ██╗ ██████╗ ██████╗ ██████╗ ███████╗',
  3. '████╗ ██║██║ ██║██╔════╝██╔═══██╗██╔══██╗██╔════╝',
  4. '██╔██╗ ██║██║ ██║██║ ██║ ██║██║ ██║█████╗',
  5. '██║╚██╗██║╚██╗ ██╔╝██║ ██║ ██║██║ ██║██╔══╝',
  6. '██║ ╚████║ ╚████╔╝ ╚██████╗╚██████╔╝██████╔╝███████╗',
  7. '╚═╝ ╚═══╝ ╚═══╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝'
  8. }
  9. vim.g.dashboard_default_executive = 'telescope'
  10. vim.g.dashboard_custom_section = {
  11. a = {description = {' Find File '}, command = 'Telescope find_files'},
  12. b = {description = {' Recently Used Files'}, command = 'Telescope oldfiles'},
  13. c = {description = {' Load Last Session '}, command = 'SessionLoad'},
  14. d = {description = {' Find Word '}, command = 'Telescope live_grep'},
  15. e = {description = {' Marks '}, command = 'Telescope marks'},
  16. }
  17. -- file_browser = {description = {' File Browser'}, command = 'Telescope find_files'},
  18. -- vim.g.dashboard_custom_shortcut = {
  19. -- a = 'f',
  20. -- find_word = 'SPC f a',
  21. -- last_session = 'SPC s l',
  22. -- new_file = 'SPC c n',
  23. -- book_marks = 'SPC f b'
  24. -- }
  25. -- find_history = 'SPC f h',
  26. -- vim.g.dashboard_session_directory = '~/.cache/nvim/session'
  27. vim.g.dashboard_custom_footer = {'chrisatmachine.com'}