mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 02:23:50 -03:00
15 lines
294 B
Lua
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
|