mirror of
https://github.com/hyzendust/KickestEnd.nvim.git
synced 2026-02-15 03:41:14 +01:00
19 lines
438 B
Lua
19 lines
438 B
Lua
return {
|
|
'goolord/alpha-nvim',
|
|
lazy = false,
|
|
config = function()
|
|
local alpha = require 'alpha'
|
|
local dashboard = require 'alpha.themes.dashboard'
|
|
|
|
local splash = require 'ascii_splash'
|
|
dashboard.section.header.val = splash
|
|
|
|
dashboard.section.buttons.val = {
|
|
dashboard.button('e', ' New File', ':ene <BAR> startinsert <CR>'),
|
|
dashboard.button('q', ' Quit', ':qa<CR>'),
|
|
}
|
|
|
|
alpha.setup(dashboard.opts)
|
|
end,
|
|
}
|