alpha.lua 319 B

1234567891011121314
  1. local M = {
  2. "goolord/alpha-nvim",
  3. }
  4. M.config = function()
  5. local startify = require("alpha.themes.startify")
  6. startify.section.bottom_buttons.val = {
  7. startify.button("e", "New file", "<cmd>ene <CR>"),
  8. startify.button("q", "Quit", "<cmd>q <CR>"),
  9. }
  10. require("alpha").setup(startify.config)
  11. end
  12. return M