alpha.lua 294 B

123456789101112131415
  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("q", "Quit", "<cmd>q <CR>"), -- preserve the quit button
  8. }
  9. require("alpha").setup(startify.config)
  10. end
  11. return M