mirror of
https://github.com/marianozunino/nvim.git
synced 2025-06-28 18:43:50 -03:00
14 lines
319 B
Lua
14 lines
319 B
Lua
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
|