| 12345678910111213141516 |
- local M = {
- "goolord/alpha-nvim",
- }
- M.config = function()
- local startify = require("alpha.themes.startify")
- startify.section.bottom_buttons.val = {
- startify.button("e", "New file", "<cmd>ene <CR>"),
- startify.button("q", "Quit", "<cmd>q <CR>"),
- }
- require("alpha").setup(startify.config)
- end
- return M
|