nvim/lua/config/plugins/alpha.lua
2024-12-21 12:38:40 -03:00

15 lines
294 B
Lua

local M = {
"goolord/alpha-nvim",
}
M.config = function()
local startify = require("alpha.themes.startify")
startify.section.bottom_buttons.val = {
startify.button("q", "Quit", "<cmd>q <CR>"), -- preserve the quit button
}
require("alpha").setup(startify.config)
end
return M