You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.6 KiB

  1. return {
  2. 'goolord/alpha-nvim',
  3. dependencies = {
  4. 'echasnovski/mini.icons',
  5. },
  6. config = function ()
  7. local alpha = require("alpha")
  8. local dashboard = require("alpha.themes.dashboard")
  9. local neovim_lean = {
  10. [[ ]],
  11. [[ _/ _/ _/ _/ _/ ]],
  12. [[ _/_/ _/ _/_/ _/_/ _/ _/ _/_/_/ _/_/ ]],
  13. [[ _/ _/ _/ _/_/_/_/ _/ _/ _/ _/ _/ _/ _/ _/ ]],
  14. [[ _/ _/_/ _/ _/ _/ _/ _/ _/ _/ _/ _/ ]],
  15. [[ _/ _/ _/_/_/ _/_/ _/ _/ _/ _/ _/ ]],
  16. [[ ]],
  17. }
  18. -- Set the ASCII art
  19. dashboard.section.header.val = neovim_lean
  20. -- Remove other sections (buttons, footer, etc.) to show only the ASCII art
  21. dashboard.section.buttons.val = {}
  22. dashboard.section.footer.val = {}
  23. local function get_center_padding()
  24. local total_lines = vim.fn.winheight(0)
  25. local art_lines = #dashboard.section.header.val
  26. return math.floor((total_lines - art_lines) / 2)
  27. end
  28. -- Center the header
  29. dashboard.opts.layout = {
  30. { type = "padding", val = get_center_padding() }, -- Add some vertical padding
  31. dashboard.section.header,
  32. }
  33. -- Set up alpha with the modified dashboard
  34. alpha.setup(dashboard.opts)
  35. end
  36. }