init.lua 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. -- vim.g.dashboard_custom_header = {
  2. -- '███╗ ██╗██╗ ██╗ ██████╗ ██████╗ ██████╗ ███████╗',
  3. -- '████╗ ██║██║ ██║██╔════╝██╔═══██╗██╔══██╗██╔════╝',
  4. -- '██╔██╗ ██║██║ ██║██║ ██║ ██║██║ ██║█████╗',
  5. -- '██║╚██╗██║╚██╗ ██╔╝██║ ██║ ██║██║ ██║██╔══╝',
  6. -- '██║ ╚████║ ╚████╔╝ ╚██████╗╚██████╔╝██████╔╝███████╗',
  7. -- '╚═╝ ╚═══╝ ╚═══╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚══════╝'
  8. -- }
  9. -- vim.g.dashboard_custom_header = {
  10. --
  11. -- ' _..._ ',
  12. -- ' .\' `. ██  ██  ██ ███  ██  █████  ██████  ██  ██ ██ ███  ███ ',
  13. -- ' : : ██  ██  ██ ████  ██ ██   ██ ██   ██ ██  ██ ██ ████  ████ ',
  14. -- ' : : ██  ██  ██ ██ ██  ██ ███████ ██████  ██  ██ ██ ██ ████ ██ ',
  15. -- ' `. .\' ██  ██  ██ ██  ██ ██ ██   ██ ██   ██  ██  ██  ██ ██  ██  ██ ',
  16. -- ' `-...-\' ███████  ██████  ██   ████ ██  ██ ██  ██   ████   ██ ██      ██ ',
  17. --
  18. -- }
  19. vim.g.dashboard_custom_header = {
  20. ' _..._ ',
  21. ' .\' (_`. _ __ ___ ',
  22. ' : . : | | _ _ _ __ __ _ _ _\\ \\ / (_)_ __ ___ ',
  23. ' :) () : | | | | | | \'_ \\ / _` | \'__\\ \\ / /| | \'_ ` _ \\ ',
  24. ' `. . .\' | |__| |_| | | | | (_| | | \\ V / | | | | | | |',
  25. ' `-...-\' |_____\\__,_|_| |_|\\__,_|_| \\_/ |_|_| |_| |_|',
  26. }
  27. vim.g.dashboard_default_executive = 'telescope'
  28. vim.g.dashboard_custom_section = {
  29. a = {description = {' Find File '}, command = 'Telescope find_files'},
  30. b = {description = {' Recently Used Files'}, command = 'Telescope oldfiles'},
  31. c = {description = {' Load Last Session '}, command = 'SessionLoad'},
  32. d = {description = {' Find Word '}, command = 'Telescope live_grep'},
  33. e = {description = {' Settings '}, command = ':e ~/.config/nvim/nv-settings.lua'}
  34. -- e = {description = {' Marks '}, command = 'Telescope marks'}
  35. }
  36. -- file_browser = {description = {' File Browser'}, command = 'Telescope find_files'},
  37. -- vim.g.dashboard_custom_shortcut = {
  38. -- a = 'f',
  39. -- find_word = 'SPC f a',
  40. -- last_session = 'SPC s l',
  41. -- new_file = 'SPC c n',
  42. -- book_marks = 'SPC f b'
  43. -- }
  44. -- find_history = 'SPC f h',
  45. -- vim.g.dashboard_session_directory = '~/.cache/nvim/session'
  46. vim.g.dashboard_custom_footer = {'chrisatmachine.com'}